-
-
Notifications
You must be signed in to change notification settings - Fork 140
/
package.json
73 lines (73 loc) · 2.37 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
{
"name": "random-name-picker",
"version": "2.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": "MIT",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"autoprefixer": "^10.4.17",
"babel-loader": "^9.1.3",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-transform-remove-debugger": "^6.9.4",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.9.1",
"cssnano": "^6.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.1",
"html-loader": "^5.0.0",
"html-variables-plugin": "^1.0.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.1",
"lint-staged": "^15.2.0",
"mini-css-extract-plugin": "^2.7.7",
"node-sass": "^9.0.0",
"postcss-loader": "^8.0.0",
"prettier": "^3.2.4",
"pug": "^3.0.2",
"pug-html-loader": "^1.1.5",
"sass-loader": "^14.0.0",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"uuid": "^9.0.1",
"webpack": "^5.90.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0",
"workbox-webpack-plugin": "^7.0.0"
},
"dependencies": {
"canvas-confetti": "^1.3.3",
"core-js": "^3.35.1",
"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"
]
}