-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
56 lines (56 loc) · 1.58 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
{
"name": "apparatus-editor",
"version": "0.4.1",
"description": "Apparatus is a hybrid graphics editor / programming environment for creating interactive diagrams.",
"license": "MIT",
"author": {
"name": "Toby Schachman",
"email": "[email protected]",
"url": "http://tobyschachman.com"
},
"repository": {
"type": "git",
"url": "http://github.com/cdglabs/apparatus.git"
},
"dependencies": {
"autoprefixer": "^6.3.6",
"codemirror": "^5.4.0",
"coffee-script": "^1.12.7",
"d3": "~4.3.0",
"d3-scale-chromatic": "^1.0.2",
"keymaster": "^1.6.2",
"numeric": "^1.2.6",
"query-string": "^2.4.2",
"rc-tooltip": "^3.4.2",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"react-dropzone": "^3.5.3",
"react-inspector": "^1.1.1",
"seedrandom": "^2.4.2",
"superagent": "^2.3.0",
"underscore": "^1.8.3",
"whatwg-fetch": "^2.0.2",
"xml2js": "^0.4.17"
},
"devDependencies": {
"coffee-loader": "^0.7.2",
"coffeetape": "^1.0.1",
"css-loader": "^0.23.1",
"opn-cli": "^3.1.0",
"postcss-loader": "^0.8.2",
"style-loader": "^0.13.1",
"stylus": "^0.54.2",
"stylus-loader": "^2.0.0",
"tape": "^4.0.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"start": "webpack-dev-server",
"start-inline": "webpack-dev-server --inline",
"build": "NODE_ENV=production webpack",
"build-dev": "NODE_ENV=development webpack",
"viewer-test": "(sleep 1 ; opn http://localhost:8080/viewer-test/) & npm run start",
"test": "coffeetape test/*.coffee"
}
}