-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1003 Bytes
/
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
{
"name": "battleship",
"version": "1.0.0",
"description": "Vanilla JavaScript battleship game",
"private": true,
"scripts": {
"bundle": "webpack",
"watch": "webpack -w",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Redvanisation/Battleship.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Redvanisation/Battleship/issues"
},
"homepage": "https://github.com/Redvanisation/Battleship#readme",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"babel-loader": "^8.0.6",
"css-loader": "^3.3.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"file-loader": "^5.0.2",
"jest": "^24.9.0",
"style-loader": "^1.0.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"bootstrap": "^4.4.1",
"jquery": "^3.4.1",
"popper.js": "^1.16.0"
}
}