-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "xdraw",
"version": "",
"private": true,
"scripts": {
"start": "npm run client-watch & npm run server-start",
"server-start": "./node_modules/.bin/node-supervisor -x coffee --watch server,fixtures,server.coffee server.coffee",
"client-watch": "./node_modules/.bin/watchify client/start.coffee -o client/bundle.js --extension=.coffee --verbose"
},
"dependencies": {
"ainojs-animation": "^1.1.7",
"ainojs-easing": "^1.0.2",
"detect-dom-ready": "~1.0.2",
"errorhandler": "~1.1.1",
"express": "~4.8.5",
"hbs": "~2.7.0",
"lodash": "~2.4.1",
"moment": "^2.8.3",
"react": "~0.11.1",
"react-input-placeholder": "^0.1.3",
"react-router": "^0.9.5",
"serve-favicon": "~2.1.1",
"serve-static": "~1.5.3"
},
"devDependencies": {
"aliasify": "^1.4.0",
"autoprefixer-stylus": "~0.3.0",
"browserify": "^6.2.0",
"coffee-script": "~1.7.1",
"coffeeify": "~0.7.0",
"envify": "^3.0.0",
"http-proxy": "~1.3.0",
"stylus": "~0.49.1",
"supervisor": "^0.6.0",
"watchify": "~1.0.2"
},
"aliasify": {
"aliases": {
"moment": "moment/min/moment.min",
"lodash": "lodash/dist/lodash.compat.min",
"ainojs-animation": "ainojs-animation/dist/animation.min",
"ainojs-easing": "ainojs-easing/dist/easing.min"
}
},
"browserify": {
"transform": [
"coffeeify",
"envify",
"aliasify"
]
}
}