-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.53 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.53 KB
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
{
"name": "shootsteroids",
"description": "simple multiplayer space shooter arena",
"author": "Dead Knight",
"license": "MIT",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/D3adKnight/shootsteroids.git"
},
"scripts": {
"start": "npm run dev:start",
"dev:start": "nodemon --ignore lib --ignore dist --exec babel-node src/server",
"dev:wds": "webpack-dev-server --progress",
"prod:build": "rimraf lib dist && babel src -d lib --ignore .test.js && cross-env NODE_ENV=production webpack -p --progress",
"lint": "eslint src webpack.config.babel.js --ext .js",
"test": "npm run lint && flow && jest --coverage",
"precommit": "npm test",
"prepush": "npm run prod:build"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"compression": "^1.6.2",
"express": "^4.14.0",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.0",
"babel-preset-env": "^1.2.1",
"babel-preset-flow": "^6.23.0",
"cross-env": "^3.2.4",
"eslint": "^3.17.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-flowtype": "^2.30.3",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"flow-bin": "^0.41.0",
"husky": "^0.13.2",
"jest": "^19.0.2",
"nodemon": "^1.11.0",
"rimraf": "^2.6.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
}
}