-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 998 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
{
"name": "battleship",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "jest --env=jsdom",
"watch": "webpack --watch",
"build": "webpack"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/KonradLach/Battleship.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/KonradLach/Battleship/issues"
},
"homepage": "https://github.com/KonradLach/Battleship#readme",
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"style-loader": "^3.3.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"identity-obj-proxy": "^3.0.0"
}
}