-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
66 lines (66 loc) · 2.36 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
58
59
60
61
62
63
64
65
66
{
"name": "ag-drift",
"version": "0.1.0",
"description": "A multiplayer anti-gravity racing game.",
"main": "server/index.js",
"scripts": {
"lint": "eslint src test",
"typecheck": "node -e 'process.env.SKIP_FLOW || process.exit(1)' || flow",
"pretest": "npm run lint && npm run typecheck",
"test": "mocha --compilers js:babel-register --growl",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --compilers js:babel-register",
"ci": "dot-only-hunter && npm run pretest && npm run coverage && cat ./coverage/lcov.info | coveralls",
"build": "babel src --out-dir . && browserify client/index.js -o public/bundle.js && (say 'go es!'; echo 'built!')",
"prepublish": "npm run test && npm run build",
"prestart": "npm run build",
"start": "IS_SERVER=true nodemon server/index.js",
"watch": "chokidar 'src/**/*.js' 'test/**/*.js' -c 'clear; npm run test --silent; npm run typecheck --silent; npm run build --silent'"
},
"author": "David da Silva <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-eslint": "^6.1.0",
"babel-plugin-syntax-flow": "^6.5.0",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"babel-runtime": "^6.6.1",
"browserify": "^13.0.1",
"chokidar-cli": "^1.2.0",
"coveralls": "^2.11.9",
"dot-only-hunter": "^1.0.2",
"eslint": "^2.13.1",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flow-vars": "^0.4.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"flow-bin": "^0.28.0",
"istanbul": "^1.0.0-alpha.2",
"jsmin": "^1.0.1",
"mocha": "^2.4.5",
"nodemon": "^1.9.2",
"unexpected": "^10.13.0"
},
"dependencies": {
"@dasilvacontin/keyboard": "^1.0.1",
"@notionhq/client": "^1.0.4",
"clone": "^1.0.2",
"dotenv": "^16.0.0",
"es6-promisify": "^4.1.0",
"express": "^4.14.0",
"howler": "^2.2.3",
"ip": "^1.1.3",
"mixpanel": "^0.13.0",
"mixpanel-browser": "^2.41.0",
"node-telegram-bot-api": "^0.23.3",
"p2": "^0.7.1",
"pixi.js": "^3.0.11",
"socket.io": "^1.4.8",
"subclass-error": "^0.1.1"
}
}