-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.49 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.49 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
{
"name": "timeout",
"version": "0.1.0",
"description": "Time tracking with posts",
"main": "server/start.js",
"scripts": {
"start": "nodemon --watch server -e js,html server/start.js",
"postinstall": "npm run build",
"build": "webpack --config ./webpack.dev.config.js",
"build:production": "NODE_ENV='production' webpack -p --config ./webpack.prod.config.js",
"test": "NODE_ENV='testing' ./node_modules/.bin/mocha --compilers js:babel-register ./client/**/*.test.js",
"test:watch": "NODE_ENV='testing' ./node_modules/.bin/mocha -w --compilers js:babel-register ./client/**/*.test.js",
"cover": "nyc --reporter=lcov --reporter=text --reporter=html --require babel-register npm test"
},
"engines": {
"node": "6.3.0",
"npm": "3.10.6"
},
"dependencies": {
"axios": "^0.13.1",
"babel-register": "^6.9.0",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"bootstrap": "^3.3.7",
"chalk": "^1.1.3",
"connect-session-sequelize": "^3.1.0",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"express-session": "^1.14.0",
"font-awesome": "^4.7.0",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pg": "^6.0.3",
"pg-hstore": "^2.3.2",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-redux": "^4.4.5",
"react-router": "^2.6.0",
"react-router-redux": "^4.0.5",
"rebass": "^0.3.3",
"redux": "^3.5.2",
"redux-form": "^6.4.3",
"redux-thunk": "^2.1.0",
"sequelize": "^3.23.6",
"serve-favicon": "^2.3.0"
},
"devDependencies": {
"autoprefixer": "^6.3.7",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-2": "^6.22.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.22.0",
"mocha": "^2.5.3",
"nock": "^8.0.0",
"node-sass": "^3.8.0",
"nodemon": "^1.9.2",
"nyc": "^8.3.0",
"postcss-loader": "^0.9.1",
"precss": "^1.4.0",
"redux-logger": "^2.6.1",
"redux-mock-store": "^1.1.2",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.12.1"
}
}