forked from dev-mission/full-stack-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.35 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.35 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
{
"name": "app",
"version": "0.0.0",
"private": true,
"scripts": {
"heroku-postbuild": "cd client && yarn && yarn build",
"start": "nodemon -L -V --ignore ./client --ignore ./migrations --ignore ./public ./bin/www",
"test": "mocha --recursive"
},
"dependencies": {
"aws-sdk": "^2.817.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cookie-session": "^1.3.3",
"debug": "~2.6.9",
"dotenv": "^6.2.0",
"ejs": "^3.1.5",
"email-templates": "^5.1.0",
"express": "~4.16.0",
"express-fileupload": "^1.2.0",
"fs-extra": "^8.1.0",
"http-errors": "~1.6.2",
"http-status-codes": "^2.1.4",
"i18n": "^0.8.6",
"jquery": "^3.5.1",
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"mime-types": "^2.1.27",
"mkdirp": "^0.5.1",
"morgan": "~1.9.0",
"mv": "^2.1.1",
"nodemon": "^2.0.6",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pg": "^8.5.1",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0",
"sequelize-paginate": "^1.1.6",
"uuid": "^3.4.0"
},
"devDependencies": {
"cross-env": "~5.2",
"del-cli": "~1.1",
"foreman": "^3.0.1",
"mocha": "^8.2.1",
"node-sass": "^4.14.1",
"sequelize-fixtures": "^1.2.0",
"supertest": "^6.1.1",
"supertest-session": "^4.1.0"
},
"engines": {
"node": "14.x",
"yarn": "1.x"
}
}