-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "one2eat-backend",
"version": "0.0.1",
"description": "This is ONE2EAT Backend",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"setup": "cp .env.example .env",
"migration:refresh": "sequelize db:migrate:undo:all && sequelize db:migrate"
},
"repository": "git@github.com:one2eat/backend.git",
"author": "Raga Subekti <rfilmriot@gmail.com>, Bintang Saputra <bintangcbs26@gmail.com>",
"license": "MIT",
"private": false,
"dependencies": {
"@sentry/node": "^5.2.0",
"async": "2.6.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "8.0.0",
"express": "4.16.4",
"express-validator": "5.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "5.5.5",
"morgan": "1.9.1",
"mysql2": "1.6.5",
"sequelize": "5.8.5"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"nodemon": "1.19.0",
"prettier": "^1.17.0",
"sequelize-cli": "^5.4.0"
}
}