-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.67 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.67 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
{
"name": "interview-scheduler",
"version": "0.1.0",
"description": "An easy peasy way to schedule interviews",
"main": "index.js",
"repository": "https://github.com/daily-bruin/interview-scheduler.git",
"author": "Michael Zhang <mszhang@ucla.edu>",
"license": "MIT",
"scripts": {
"postcheckout": "yarn",
"watch": "nodemon ./bin/www",
"client": "cd frontend && yarn start",
"dev": "concurrently --kill-others-on-fail \"yarn watch\" \"yarn client\""
},
"dependencies": {
"axios": "^0.17.1",
"body-parser": "^1.18.2",
"connect-session-sequelize": "^5.1.0",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-session": "^1.15.6",
"morgan": "^1.9.0",
"node-jsx": "^0.13.3",
"node-sass": "^4.7.1",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"path": "^0.12.7",
"pg": "^7.4.0",
"pg-hstore": "^2.3.2",
"react": "^16.1.1",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.1.1",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "^1.0.17",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"sequelize": "^4.22.8",
"supervisor": "^0.12.0"
},
"devDependencies": {
"concurrently": "^3.5.0",
"css-loader": "^0.28.7",
"eslint": "^4.11.0",
"eslint-config-uclaradio": "^1.0.17",
"json-loader": "^0.5.7",
"jsx-loader": "^0.13.2",
"nodemon": "^1.12.1",
"prettier": "^1.8.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"stylelint": "^8.2.0",
"stylelint-config-uclaradio": "^1.0.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
}
}