-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "battleship",
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"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)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
},
"verbose": true
},
"version": "1.0.0",
"description": "",
"private": "true",
"scripts": {
"test": "jest",
"watch": "webpack --watch",
"start": "webpack serve --open",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pete-Fowler/battleship.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Pete-Fowler/battleship/issues"
},
"homepage": "https://github.com/Pete-Fowler/battleship#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"css-loader": "^6.7.1",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"prettier": "2.7.1",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}