forked from raywave/PixelX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 935 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
{
"name": "pixelbattle-2019",
"version": "1.0.0",
"description": "Pixel Battle [2019] VKontakte",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development DEBUG=pixelbattle-2019:* node --nolazy --inspect index.js",
"start": "cross-env NODE_ENV=production node index.js",
"lint": "eslint ."
},
"dependencies": {
"axios": "^0.19.0",
"canvas": "^2.6.0",
"cross-env": "^6.0.3",
"ws": "^7.1.2"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.8"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"engines": {
"node": "^8 || ^10 || ^11 || ^12"
},
"author": "aeonixlegit",
"license": "MIT"
}