-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "mathquiz",
"version": "1.0.0",
"description": "A HTML+JavaScript application that generates mathematics problems randomly",
"main": "main.js",
"dependencies": {
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"scripts": {
"build": "rimraf dist && webpack --config webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msakuta/MathQuiz.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/msakuta/MathQuiz/issues"
},
"homepage": "https://github.com/msakuta/MathQuiz#readme",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"babel-loader": "^8.2.3",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"dotenv-webpack": "^7.0.3",
"file-loader": "^6.0.0",
"firebase": "^9.6.1",
"follow-redirects": ">=1.14.8",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.3.0",
"qrcode": "^1.5.0",
"url-loader": "^4.1.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^4.2.2"
}
}