This repository was archived by the owner on Jan 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.63 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.63 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
{
"name": "cmulab-server",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"build-react": "babel public/javascripts/react --out-dir public/javascripts --presets react-app/prod",
"watch-react": "babel --watch public/javascripts/react --out-dir public/javascripts --presets react-app/prod"
},
"author": "QuantumStack",
"dependencies": {
"axios": "^0.18.1",
"body-parser": "^1.18.3",
"bulma": "^0.7.2",
"bulma-tooltip": "^2.0.2",
"cookie-parser": "^1.4.5",
"csvtojson": "^2.0.8",
"dotenv": "^6.2.0",
"express": "~4.16.0",
"express-handlebars": "^5.3.1",
"express-session": "^1.17.0",
"http-errors": "~1.6.2",
"json2csv": "^4.5.4",
"moment": "^2.24.0",
"mongodb": "^3.1.12",
"mongoose": "^5.4.6",
"morgan": "~1.9.0",
"node-sass-middleware": "^0.11.0",
"nodemailer": "^5.1.1",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-react-app": "^3.1.2",
"debug": "~2.6.9",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-react": "^7.19.0"
},
"eslintConfig": {
"extends": "airbnb-base",
"rules": {
"consistent-return": "off",
"no-underscore-dangle": [
"error",
{
"allow": [
"_id"
]
}
],
"camelcase": [
"error",
{
"allow": [
"student_id"
]
}
]
}
}
}