-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.49 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
67
68
69
70
71
72
73
74
75
76
{
"name": "cybernetic-gamelan-future-automaton",
"version": "1.2.2",
"description": "Network-based browser game for human laptop performers",
"main": "automaton/index.html",
"engines": {
"node": "~10.4.1",
"npm": "~6.1.0"
},
"scripts": {
"build": "npm run build:docs && npm run build:play",
"build:docs": "make-dir ./dist && static-generator build --source_dir ./docs --output_dir ./dist",
"build:play": "npm run clean:play && webpack --mode production",
"clean": "npm run clean:dist && npm run clean:node",
"clean:dist": "rimraf dist",
"clean:node": "rimraf node_modules/",
"clean:play": "rimraf dist/play",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "eslint automaton/scripts; exit 0",
"lint:scss": "sass-lint -c .sass-lint.yml '{automaton,docs}/**/*.scss' -v -q",
"postinstall": "npm run build",
"serve": "webpack-dev-server --host 0.0.0.0 --mode development",
"start": "node server/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adzialocha/cybernetic-gamelan-future-automaton.git"
},
"author": "adzialocha",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/adzialocha/cybernetic-gamelan-future-automaton/issues"
},
"private": true,
"homepage": "https://github.com/adzialocha/cybernetic-gamelan-future-automaton#readme",
"devDependencies": {
"babel-core": "6.26.3",
"babel-eslint": "8.2.6",
"babel-loader": "7.1.5",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.7.0",
"css-loader": "1.0.0",
"eslint": "5.2.0",
"eslint-plugin-babel": "5.1.0",
"extract-text-webpack-plugin": "v4.0.0-alpha.0",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "1.1.11",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"make-dir": "1.1.0",
"make-dir-cli": "1.0.0",
"node-sass": "4.7.2",
"rimraf": "2.6.2",
"sass-lint": "1.12.1",
"sass-loader": "7.0.3",
"static-generator": "0.2.2",
"style-loader": "0.21.0",
"webpack": "4.16.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "3.1.5"
},
"dependencies": {
"chalk": "2.3.0",
"cors": "2.8.4",
"express": "4.16.2",
"key-code": "0.0.1",
"mathjs": "5.0.4",
"merge-options": "1.0.1",
"normalize.css": "8.0.0",
"osc-js": "1.2.0",
"stats.js": "0.17.0",
"three": "0.94.0"
}
}