generated from kristenmazza/javascript-project-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
55
56
57
{
"name": "battleship",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "jest",
"watch": "webpack --watch",
"start": "webpack serve --open",
"build": "webpack",
"prepare": "husky install"
},
"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)$": "<rootDir>/client/src/stylesheets/"
},
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/client/src/stylesheets/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/kristenmazza/battleship.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kristenmazza/battleship/issues"
},
"homepage": "https://github.com/kristenmazza/battleship#readme",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"babel-jest": "^29.5.0",
"css-loader": "^6.7.3",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.6.1",
"lint-staged": "^13.2.0",
"prettier": "2.8.6",
"style-loader": "^3.3.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}