-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.33 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": "bomberman-js-remake",
"version": "1.0.0",
"description": "Remake of NES Bomberman (1983) using JavaScript & HTML5 Canvas",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/webpack",
"start": "webpack-dev-server",
"lint": "eslint src",
"test": "./node_modules/.bin/mocha --reporter spec"
},
"keywords": [
"nes",
"bomberman"
],
"author": "Egor Romanov <[email protected]>",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"file-loader": "^3.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mini-css-extract-plugin": "^0.5.0",
"mocha": "^7.1.0",
"node-sass": "^4.14.1",
"prettier": "1.16.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.16.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"lodash": "^4.17.21"
}
}