-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1.02 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
{
"name": "snake-wars",
"version": "0.1.0",
"description": "Snake wars boot gaming playing platform",
"main": "index.js",
"scripts": {
"start": "npm run backend-start & npm run frontend-start",
"frontend-start": "cd frontend && npm start",
"backend-start": "cd backend && npm start",
"watch": "npm run backend-watch & npm run frontend-watch",
"frontend-watch": "cd frontend && npm watch",
"backend-watch": "cd backend && npm watch",
"test": "npm run frontend-test",
"frontend-test": "cd frontend && npm test",
"postinstall": "npm run frontend-install && npm run backend-install",
"frontend-install": "cd frontend && npm install",
"backend-install": "cd backend && npm install",
"seed": "./seed.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FrostF0X/snake_wars.git"
},
"author": "frost_fox",
"license": "ISC",
"bugs": {
"url": "https://github.com/FrostF0X/snake_wars/issues"
},
"homepage": "https://github.com/FrostF0X/snake_wars#readme"
}