-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 864 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
{
"name": "techdegree-fullstackjs-rest-api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "nodemon ./app.js",
"seed": "cross-env DB_ENABLE_LOGGING=true node './seed'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.29.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"sequelize-cli": "^6.5.2"
},
"dependencies": {
"basic-auth": "^2.0.1",
"bcryptjs": "^2.4.3",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"morgan": "^1.10.0",
"promise.prototype.finally": "^3.1.4",
"sequelize": "^6.27.0",
"sqlite3": "^5.1.4"
}
}