-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 4.93 KB
/
package.json
File metadata and controls
144 lines (144 loc) · 4.93 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "play-splom",
"productName": "PlaySPLOM",
"companyName": "Critical Media Lab (IXDM)",
"version": "0.7.0",
"description": "Scatter plot sonification for exploring datasets with sound",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/experimentalDataAesthetics/play-splom.git"
},
"author": {
"name": "Chris Sattinger",
"email": "crucialfelix@gmail.com",
"url": "http://ixdm.ch/critical-media-lab"
},
"main": "main.js",
"scripts": {
"test":
"cross-env NODE_ENV=test BABEL_DISABLE_CACHE=1 mocha --compilers js:babel-register --recursive --require ./test/setup.js test/**/*.spec.js",
"test-watch": "npm test -- --watch",
"test-e2e":
"cross-env NODE_ENV=test BABEL_DISABLE_CACHE=1 mocha --compilers js:babel-register --require ./test/setup.js --require co-mocha ./test/e2e.js",
"lint": "eslint app test *.js",
"hot-server":
"cross-env HOT=1 NODE_ENV=development node -r babel-register server.js",
"build": "npm run build-main && npm run build-renderer",
"build-main":
"cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.electron.js --display-modules --progress --profile --colors",
"build-renderer":
"cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.production.js --display-modules --progress --profile --colors",
"production": "cross-env NODE_ENV=production electron ./",
"start-hot":
"cross-env HOT=1 NODE_ENV=development electron -r babel-register ./main.development",
"package":
"cross-env NODE_ENV=production node -r babel-register package.js",
"package-all": "npm run package -- --all",
"postinstall":
"node node_modules/fbjs-scripts/node/check-dev-engines.js package.json",
"start":
"concurrently --kill-others \"npm run hot-server\" \"npm run start-hot\"",
"webpack-stats":
"cross-env NODE_ENV=production node ./node_modules/webpack/bin/webpack --config webpack.config.production.js --profile --json > webpack-stats.json"
},
"bin": {
"electron": "./node_modules/.bin/electron"
},
"keywords": [
"datavisualization",
"sonification",
"sound",
"supercolider",
"d3",
"electron-app",
"electron"
],
"dependencies": {
"baconjs": "^0.7.95",
"d3": "^3.5.17",
"data-projector": "0.2.0",
"datalib": "^1.8.0",
"electron-debug": "^1.4.0",
"electron-log": "^2.2.9",
"font-awesome": "^4.6.3",
"fs-jetpack": "^0.10.5",
"keymirror": "^0.1.1",
"lodash": "4.17.11",
"material-ui": "0.15.4",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hyperscript": "^3.0.0",
"react-input-range": "^1.1.4",
"react-motion": "^0.5.1",
"react-redux": "^5.0.5",
"react-tap-event-plugin": "^2.0.1",
"react-textselect": "^0.2.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.1.0",
"reselect": "^3.0.1",
"source-map-support": "^0.4.18",
"supercolliderjs": "0.14.2",
"updeep": "^1.0.0",
"watch": "^1.0.1"
},
"devDependencies": {
"asar": "^0.13.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-remove-console": "^6.8.5",
"babel-plugin-transform-remove-debugger": "^6.8.5",
"babel-plugin-webpack-loaders": "^0.9.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015-node6": "^0.4.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.16.0",
"chai": "^4.1.2",
"babel-register": "^6.26.0",
"co-mocha": "^1.1.2",
"concurrently": "^3.5.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"css-modules-require-hook": "^4.2.2",
"debug-menu": "^0.6.1",
"del": "^3.0.0",
"devtron": "^1.4.0",
"electron": "^1.7.6",
"electron-packager": "^9.0.1",
"electron-react-devtools": "^0.4.0",
"electron-rebuild": "^1.6.0",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"express": "^4.15.4",
"extract-text-webpack-plugin": "^3.0.0",
"jsdom": "^9.8.0",
"fbjs-scripts": "^0.8.1",
"json-loader": "^0.5.7",
"minimist": "^1.2.0",
"mocha": "^3.4.2",
"node-libs-browser": "^2.0.0",
"selenium-webdriver": "^3.0.1",
"sinon": "^2.3.8",
"react-addons-test-utils": "^15.6.0",
"style-loader": "^0.18.2",
"webpack": "^3.2.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.19.1"
},
"devEngines": {
"node": ">=6"
}
}