-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"name": "backfinal",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon ./server.js",
"start": "node dist/server.js",
"mig:run": "yarn sequelize db:migrate",
"mig:undo": "yarn sequelize migrate:undo"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"celebrate": "^12.1.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"flatted": "^3.0.4",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.1.0",
"sequelize": "^5.21.10"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/node": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "2.21.2",
"nodemon": "^2.0.4",
"sequelize-cli": "^5.5.1"
}
}