-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.96 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
{
"name": "Sprout",
"version": "1.0.0",
"engines": {
"node": "15.0.1",
"npm": "7.11.2"
},
"description": "An interactive garden application",
"main": "./server/app.js",
"scripts": {
"buildMain": "babel ./client/mainPages/main.jsx --presets @babel/preset-react --out-file ./hosted/mainBundle.js",
"buildLogin": "babel ./client/login.jsx --presets @babel/preset-react --out-file ./hosted/loginBundle.js",
"buildSignup": "babel ./client/signup.jsx --presets @babel/preset-react --out-file ./hosted/signupBundle.js",
"buildHelper": "babel ./client/helper/helper.js --presets @babel/preset-react --out-file ./hosted/bundle.js",
"build": "npm run buildMain && npm run buildLogin && npm run buildSignup && npm run buildHelper",
"watch": "babel --watch ./client --out-file ./hosted/bundle.js",
"scss": "node-sass --watch ./client/scss -o ./hosted/css",
"nodemon": "nodemon --watch ./server --watch ./hosted ./server/app.js ",
"start": "node ./server/app.js",
"pretest": "eslint ./server --fix",
"test": "echo \"Tests complete\""
},
"author": "Jin Jin Heipler",
"license": "Apache 2.0",
"dependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/node": "^7.13.13",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"body-parser": "^1.19.0",
"bootstrap": "^4.6.0",
"compression": "^1.7.4",
"connect-redis": "^5.2.0",
"cookie-parser": "^1.4.5",
"csurf": "^1.11.0",
"express": "^4.17.1",
"express-handlebars": "^5.3.0",
"express-session": "^1.17.1",
"helmet": "^4.5.0",
"mongodb": "^3.6.6",
"mongoose": "^5.12.6",
"node-sass": "^5.0.0",
"react-bootstrap": "^1.5.2",
"redis": "^3.1.2",
"sass": "^1.32.11",
"serve-favicon": "^2.5.0",
"underscore": "^1.13.1"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.6"
}
}