-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
72 lines (72 loc) · 1.86 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
{
"name": "condo-app",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"concurrently": "^4.1.0",
"nodemon": "^1.18.10"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"bootstrap": "^4.3.1",
"clean-css": "^4.2.1",
"concurrently": "^4.1.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"elemental": "^0.6.1",
"express": "^4.16.4",
"express-session": "^1.15.6",
"http-proxy-middleware": "^0.19.1",
"if-env": "^1.0.4",
"jquery": "^3.3.1",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"mysql": "^2.16.0",
"mysql2": "^1.6.5",
"node-sass": "^4.11.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"react-animated-css": "^1.0.5",
"react-materialize": "^3.0.3",
"react-modal": "^3.8.1",
"react-particles-js": "^2.5.1",
"react-router-dom": "^5.0.0",
"react-select": "^2.4.2",
"sequelize": "^5.2.12",
"session": "^0.1.0",
"styled-components": "^4.2.0"
},
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"node server.js\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"engines": {
"node": "10.14.1",
"npm": "6.4.1",
"react-router-dom": "^5.0.0",
"react-select": "^2.4.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}