forked from TsaiAnson/eLecture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.76 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
{
"name": "eLecture",
"version": "0.0.1",
"description": "Online platform to facilitate communication between instructors and students during lecture",
"repository": "https://github.com/TsaiAnson/eLecture.git",
"main": "server/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack -p --config ./build/webpack.config.js",
"build:dev": "cross-env NODE_ENV=development webpack -d --config ./build/webpack.config.js",
"dev": "npm run build:dev & npm run start:dev",
"prod": "npm run build & npm start",
"start": "cross-env NODE_ENV=production node server/index.js",
"start:dev": "cross-env NODE_ENV=development node server/index.js",
"test": "cross-env NODE_ENV=test nyc mocha --recursive"
},
"author": "Anson, Jove, Titan",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"connect-mongo": "^2.0.1",
"cross-env": "^5.1.6",
"css-loader": "^0.28.11",
"express": "^4.16.3",
"express-session": "^1.15.6",
"mongoose": "^5.1.3",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.4.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-persist": "^4.10.2",
"socket.io": "^2.1.1",
"style-loader": "^0.21.0",
"webpack": "^4.10.2",
"webpack-cli": "^3.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"mocha": "^5.2.0",
"nyc": "^12.0.1"
}
}