-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 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
{
"name": "how-many-soldiers",
"version": "1.0.0",
"description": "A JavaScript Program to find out the amout of soldiers needed for a formation in rows of 7",
"main": "src/app/index.js",
"scripts": {
"dev": "webpack-dev-server --history-api-fallback --inline --progress --mode=development",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soulwash/how-many-soldiers.git"
},
"author": "Niklas Frick",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/soulwash/how-many-soldiers/issues"
},
"homepage": "https://github.com/soulwash/how-many-soldiers#readme",
"dependencies": {
"@babel/core": "^7.11.6",
"npm": "^6.14.8",
"sweetalert": "^2.1.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"css-loader": "^3.6.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.14.1",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}