forked from UMD-INST377/Group-Project-Base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 817 Bytes
/
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
{
"name": "inst377-group-project-base",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"express": "^4.17.1",
"mysql2": "^2.2.5",
"node-fetch": "^3.0.0",
"nodemon": "^2.0.7",
"sequelize": "^6.5.0",
"sequelize-cli": "^6.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/register": "^7.12.13",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-import": "^2.22.1"
}
}