-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 925 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
41
42
{
"name": "battleship",
"version": "1.0.0",
"description": "Implementation of Battleship game using Test-Driven-Development",
"private": true,
"scripts": {
"test": "jest",
"watch": "jest --watch",
"build": "webpack",
"start": "webpack serve --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nashitshayan/battleship.git"
},
"keywords": [
"JS",
"TDD",
"Jest",
"HTML",
"CSS"
],
"author": "Nashit Shayan Khan",
"license": "ISC",
"bugs": {
"url": "https://github.com/nashitshayan/battleship/issues"
},
"homepage": "https://github.com/nashitshayan/battleship#readme",
"devDependencies": {
"@babel/preset-env": "^7.18.10",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"css-loader": "^6.7.1",
"ramda": "^0.28.0",
"style-loader": "^3.3.1"
}
}