-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
92 lines (92 loc) · 2.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
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
{
"name": "course.thesis",
"version": "1.0.0",
"scripts": {
"start": "nodemon server",
"test": "export NODE_ENV=test && mocha ./server/test/*.spec.js && mocha ./client/test/.setup.js ./client/test/*.spec.js",
"tw": "set NODE_ENV=test & mocha ./server/test/*.spec.js & mocha ./client/test/.setup.js ./client/test/*.spec.js",
"build": "webpack --watch",
"start:dev": "export NODE_ENV=development && nodemon server",
"sw": "SET NODE_ENV=development & nodemon server",
"postinstall": "webpack"
},
"author": "Hack Reactor",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.69.0",
"axios": "^0.16.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"bookshelf": "^0.10.3",
"connect-flash": "^0.1.1",
"connect-redis": "^3.2.0",
"cookie-parser": "^1.4.3",
"crypto": "^0.0.3",
"dotenv": "^4.0.0",
"ejs": "^2.5.6",
"express": "^4.15.2",
"express-session": "^1.15.1",
"filestack-js": "^0.6.3",
"grunt-pg": "https://github.com/watsoncj/grunt-pg.git",
"heroku-ssl-redirect": "^0.0.4",
"knex": "^0.12.9",
"lodash": "^4.17.4",
"morgan": "^1.8.1",
"multer": "^1.3.0",
"multer-s3": "^2.7.0",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"passport-local": "^1.0.0",
"passport-totp": "^0.0.2",
"passport-twitter": "^1.0.4",
"pg": "^6.1.5",
"react": "^15.5.4",
"react-bootstrap": "^0.31.0",
"react-bootstrap-datetimepicker": "^0.0.22",
"react-dom": "^15.5.4",
"react-router-dom": "^4.1.1",
"react-tag-input": "^4.7.2",
"redis": "^2.7.1",
"render-if": "^0.1.1",
"sprintf-js": "^1.1.1",
"thirty-two": "^1.0.2",
"webpack": "^2.3.2"
},
"devDependencies": {
"babel-loader": "^7.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"chai": "^3.5.0",
"enzyme": "^2.8.2",
"grunt": "~0.4.5",
"grunt-eslint": "^19.0.0",
"grunt-mocha-test": "^0.13.2",
"jsdom": "^8.0.1",
"mocha": "^3.2.0",
"node-mocks-http": "^1.6.1",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "^15.5.4",
"supertest": "^3.0.0",
"webpack": "^2.3.2",
"webpack-dev-server": ">=3.1.11"
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
]
},
"engines": {
"node": "7.10.0"
}
}