-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.73 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
{
"name": "ninety-days",
"version": "1.0.0",
"description": "An app to get your fitness on track",
"main": "index.js",
"repository": "https://github.com/parkedwards/ninety-days",
"scripts": {
"start": "node server/index.js",
"start:dev": "NODE_ENV=test nodemon server/index.js",
"start:devserv": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
"test:watch": "npm run test -- --watch",
"build": "webpack -w"
},
"author": "Edward Park",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"jquery": "^2.2.1",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"react-addons-test-utils": "^0.14.7",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"axios": "^0.15.3",
"babel-preset-stage-1": "^6.1.18",
"body-parser": "^1.15.2",
"config": "^1.24.0",
"cookie-parser": "^1.4.3",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"express": "^4.14.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^3.10.1",
"material-ui": "^0.16.7",
"moment": "^2.17.1",
"pg": "^6.1.2",
"react": "^0.14.8",
"react-bootstrap": "^0.30.7",
"react-dom": "^0.14.3",
"react-redux": "^4.0.0",
"react-router": "^2.0.1",
"react-router-bootstrap": "^0.23.1",
"redux": "^3.0.4",
"redux-form": "^6.4.3",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"winston": "^2.3.1"
}
}