-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.98 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.98 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "zorbio",
"version": "2.2.0",
"build": "2",
"description": "Absorb the Orbs!",
"main": "server/server.js",
"repository": {
"type": "git",
"url": "https://github.com/ScriptaGames/zorbio"
},
"license": "MIT",
"scripts": {
"test": "npm run eslint",
"start-dev": "ZOR_ENV=dev ./node_modules/.bin/supervisor --watch server,common,package.json server/server.js",
"start-dev-dist": "ZOR_ENV=dev node server/server.js dist",
"start": "npm run start-prod",
"start-prod": "ZOR_ENV=prod node server/server.js dist",
"css": "./node_modules/.bin/lessc client/css/main.less client/css/main.css && node_modules/postcss-cli/bin/postcss --use autoprefixer -r client/css/main.css",
"browser-sync": "browser-sync start --server --serveStatic ./client --files './client/**/*.(css|js|html)' --directory --no-notify",
"build-prod": "bash build.sh",
"build-dev": "bash build.sh --dist-dev",
"uglify-theirs": "./node_modules/.bin/uglifyjs -o client/js/third.min.js",
"uglify-ours": "./node_modules/.bin/uglifyjs -o client/js/first.min.js --wrap ZOR -m -c --mangle-props regex=\"/^z_|^ZOR/\"",
"pre-commit-msg": "echo 'Running pre-commit tests...' && exit 0",
"eslint": "./node_modules/.bin/eslint server client/js client/skins common tests/*.js",
"eslint-fix": "./node_modules/.bin/eslint server client/js client/skins common tests/*.js --fix",
"precommit": "npm test",
"podman-build": "podman build -t node-app ."
},
"author": "Scripta Games, Inc.",
"dependencies": {
"animate.less": "2.2.0",
"bad-words-relaxed": "^1.6.2",
"basic-auth": "1.1.0",
"bufferutil": "^4.0.1",
"console-stamp": "0.2.5",
"cookie": "0.3.1",
"datasets": "0.1.0",
"es6-promise": "4.1.0",
"express": "^4.17.1",
"howler": "2.0.4",
"ismobilejs": "0.4.1",
"linode-near-location": "1.0.0",
"lodash": "4.17.19",
"node-gameloop": "0.1.2",
"node-uuid": "1.4.8",
"performance-now": "2.1.0",
"ractive": "0.9.1",
"ractive-transitions-fade": "0.3.1",
"raven": "2.1.0",
"raven-js": "3.16.0",
"request": "^2.88.2",
"schemapack": "1.4.2",
"shader-particle-engine": "git+https://git@github.com/squarefeet/ShaderParticleEngine.git",
"three": "0.88.0",
"urijs": "^1.19.5",
"utf-8-validate": "^5.0.2",
"valid-url": "1.0.9",
"web-audio-daw": "2.3.1",
"whatwg-fetch": "2.0.3",
"ws": "^7.4.3",
"xss-filters": "1.2.7"
},
"devDependencies": {
"autoprefixer": "7.1.1",
"eslint": "^7.20.0",
"eslint-config-google": "0.9.1",
"html-inline": "^1.2.0",
"html-minifier": "3.5.2",
"less": "^4.1.1",
"postcss": "^8.2.6",
"postcss-cli": "^8.3.1",
"supervisor": "0.12.0",
"uglify-es": "3.1.3"
}
}