-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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": "battleship",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "jest",
"watch": "webpack --watch",
"lint": "eslint src",
"build": "webpack",
"coverage": "jest --coverage",
"pages": "git subtree push --prefix dist origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OptimisticTrousers/TOP-battleship.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/OptimisticTrousers/TOP-battleship/issues"
},
"homepage": "https://github.com/OptimisticTrousers/TOP-battleship#readme",
"devDependencies": {
"@babel/preset-env": "^7.18.2",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.1",
"prettier": "2.7.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"canvas-confetti": "^1.9.0"
}
}