-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.25 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.25 KB
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
{
"name": "math-quiz",
"version": "1.0.0",
"description": "game spa vanilla js",
"main": "src/index.js",
"author": "slice312",
"license": "MIT",
"private": true,
"homepage": "https://slice312.github.io/math-quiz/",
"repository": {
"type": "git",
"url": "https://github.com/slice312/math-quiz"
},
"keywords": [
"vanilla", "spa", "feature-sliced design"
],
"scripts": {
"start": "webpack-dev-server --config webpack.config.js --mode=development --open",
"build": "webpack --config webpack.config.js --mode=production",
"deploy": "npm run build && gh-pages -d build",
"lint": "eslint . --ext .js"
},
"devDependencies": {
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.1",
"dotenv-webpack": "8.0.1",
"eslint": "8.26.0",
"eslint-plugin-import": "2.26.0",
"gh-pages": "4.0.0",
"html-webpack-plugin": "5.5.0",
"mini-css-extract-plugin": "2.6.1",
"postcss": "8.4.18",
"postcss-loader": "7.0.1",
"postcss-preset-env": "7.8.2",
"sass": "1.55.0",
"sass-loader": "13.1.0",
"style-loader": "3.3.1",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.11.1",
"webpack-merge": "5.8.0"
},
"dependencies": {
"dayjs": "1.11.6"
}
}