-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 934 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
{
"name": "battleship",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "jest",
"watch": "jest --watch",
"build": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bellom/battleship.git"
},
"author": "Saheed and Oluwaseun",
"license": "ISC",
"bugs": {
"url": "https://github.com/bellom/battleship/issues"
},
"homepage": "https://github.com/bellom/battleship#readme",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.9.0",
"style-loader": "^1.0.0",
"ts-loader": "^6.2.1",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"eslint-config-airbnb": "^18.0.1"
}
}