-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.45 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.45 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
{
"name": "places-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:dev": "nodemon index.js",
"db:migrate": "sequelize db:migrate",
"db:migrate:undo": "sequelize db:migrate:undo",
"db:migrate:undo:all": "sequelize db:migrate:undo:all",
"db:seed:all": "sequelize db:seed:all",
"db:seed:undo": "sequelize db:seed:undo",
"db:seed:undo:all": "sequelize db:seed:undo:all",
"db:create": "sequelize db:create",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "npm run db:create && npm run db:migrate && npm run db:seed:all"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ajv": "^6.12.0",
"ajv-errors": "^1.0.1",
"axios": "^0.19.2",
"bcrypt": "^4.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-promise-router": "^3.0.3",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"mysql2": "^2.1.0",
"npmlog": "^4.1.2",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-facebook-token": "^3.3.0",
"passport-google-oauth": "^2.0.0",
"passport-google-token": "^0.1.2",
"passport-jwt": "^4.0.0",
"randomatic": "^3.1.1",
"sequelize": "^5.21.5",
"swagger-jsdoc": "^4.0.0",
"trim-request": "^1.0.6"
},
"devDependencies": {
"nodemon": "^2.0.2",
"sequelize-cli": "^5.5.1"
}
}