forked from GH-Event-Demos/random-name-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "random-name-picker",
"version": "1.1.0",
"description": "Simple HTML5 random name picker for picking lucky draw winner using Web Animations and AudioContext API.",
"private": true,
"scripts": {
"build": "webpack --config webpack/webpack.prod.conf.js",
"start": "webpack serve --open --config webpack/webpack.dev.conf.js",
"first-release": "npx standard-version --commit-all --tag-prefix v --release-as 1.0.0 --infile CHANGELOG.md",
"release": "npx standard-version --commit-all --tag-prefix v --infile CHANGELOG.md",
"prepare": "husky install",
"extract-latest-change-log": "node scripts/extractLatestChangeLog.js"
},
"author": "Ice Lam",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-transform-remove-debugger": "^6.9.4",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.2",
"cssnano": "^4.1.10",
"dotenv": "^8.2.0",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.0",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-variables-plugin": "^1.0.0",
"html-webpack-plugin": "^5.0.0",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"mini-css-extract-plugin": "^1.3.6",
"node-sass": "^5.0.0",
"postcss-loader": "^5.0.0",
"prettier": "^2.2.1",
"pug": "^3.0.0",
"pug-html-loader": "^1.1.5",
"sass-loader": "^11.0.0",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.15",
"typescript": "^4.1.3",
"url-loader": "^4.1.0",
"webpack": "^5.21.2",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.0",
"workbox-webpack-plugin": "^6.1.0"
},
"dependencies": {
"canvas-confetti": "^1.3.3",
"core-js": "^3.6.5",
"element-remove-polyfill": "^1.1.0",
"web-animations-js": "^2.3.2"
},
"browserslist": [
">0.2%",
"last 2 versions",
"not dead",
"ie 11",
"firefox 15",
"opera 12"
]
}