-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
96 lines (96 loc) · 2.81 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "panther-audio",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development RUNNING_LOCALLY=true nodemon ./server",
"start:production": "NODE_ENV=production RUNNING_LOCALLY=true nodemon ./server",
"start:server": "fly restart:production",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --require ./test/test-helper.js --recursive",
"build": "webpack --config webpack.prod.js -p",
"deploy": "NODE_ENV=production fly production"
},
"author": "Joshua Comeau",
"license": "MIT",
"dependencies": {
"babel": "^6.3.13",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.17",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.0-beta1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.1.0",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.13",
"body-parser": "^1.15.0",
"classnames": "^2.2.1",
"express": "^4.13.4",
"faker": "^3.0.1",
"history": "^1.17.0",
"immutable": "^3.7.6",
"lodash": "^4.5.0",
"moment": "^2.11.2",
"nconf": "^0.8.4",
"react": "^15.0.0-rc.2",
"react-activity": "^1.0.14",
"react-addons-css-transition-group": "^0.14.7",
"react-dom": "^15.0.0-rc.2",
"react-flip-move": "1.3.1",
"react-immutable-proptypes": "^1.7.0",
"react-play-button": "^0.1.1",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"redux-saga": "^0.9.1",
"redux-thunk": "^1.0.0",
"request": "^2.69.0",
"reselect": "^2.0.1",
"rethinkdb": "2.2.6",
"whatwg-fetch": "^0.11.0"
},
"devDependencies": {
"autoprefixer": "^6.2.3",
"chai": "^3.4.1",
"chai-equal-jsx": "^1.0.9",
"chai-immutable": "^1.5.3",
"css-loader": "^0.23.0",
"flightplan": "^0.6.13",
"immutable-devtools": "0.0.6",
"json-loader": "^0.5.4",
"mocha": "^2.3.4",
"node-sass": "^3.4.2",
"nodemon": "^1.9.1",
"postcss-loader": "^0.8.0",
"react-addons-perf": "^0.14.8",
"react-addons-test-utils": "^0.14.6",
"react-transform-hmr": "^1.0.0",
"redux-devtools": "^3.0.0",
"redux-devtools-dock-monitor": "^1.0.1",
"redux-devtools-filter-actions": "^1.1.0",
"redux-devtools-log-monitor": "^1.0.1",
"sass-loader": "^3.1.2",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.0",
"supertest": "^1.1.0",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.2.0"
},
"babel": {
"plugins": [
[
"transform-decorators-legacy"
]
],
"presets": [
"es2015",
"stage-0",
"react"
]
}
}