forked from cprerovsky/moonar-lander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.61 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
{
"name": "moonar-lander",
"version": "0.0.1",
"description": "A lunar lander type game",
"main": "build/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch-frontend": "./node_modules/.bin/webpack --watch --config ./frontend/webpack.config.js --display-error-details",
"watch-backend": "./node_modules/.bin/tsc -w -p backend",
"build": "./node_modules/.bin/tsc -p ./backend; ./node_modules/.bin/webpack --config ./frontend/webpack.config.js --display-error-details",
"supervisor": "./node_modules/.bin/nodemon ./build/backend/index.js",
"watch": "node node_modules/concurrently/src/main.js --prefix \"[{name}]\" --names \"frontend,backend,supervisor\" --kill-others \"npm run watch-frontend\" \"npm run watch-backend\" \"npm run supervisor\""
},
"author": "Clemens Prerovsky <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/seedrandom": "^2.4.27",
"express": "^4.14.0",
"nodemon": "^1.11.0",
"path": "^0.12.7",
"typescript": "^2.2.0",
"ws": "^1.1.1"
},
"devDependencies": {
"@types/express": "^4.0.34",
"@types/node": "^6.0.55",
"concurrently": "^3.1.0",
"seedrandom": "^2.4.2",
"ts-loader": "^1.3.3",
"typescript": "^2.1.4",
"webpack": "^1.14.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cprerovsky/moonar-lander.git"
},
"keywords": [
"lunar",
"lander",
"canvas",
"game",
"websockets"
],
"bugs": {
"url": "https://github.com/cprerovsky/moonar-lander/issues"
},
"homepage": "https://github.com/cprerovsky/moonar-lander#readme"
}