-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 803 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 803 Bytes
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
{
"name": "express-server",
"version": "1.0.0",
"description": "express tutorial",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"db": "npm run db:create-empty && npm run db:add-users",
"db:create-empty": "sqlite3 dev-db.sqlite3 < db/schema.sql",
"db:add-users": "sqlite3 dev-db.sqlite3 < db/dummy_users.sql"
},
"author": "",
"license": "ISC",
"dependencies": {
"@kdf/salt": "^2.0.1",
"body-parser": "^1.19.0",
"crypto-js": "^4.0.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"knex": "^0.21.5"
},
"devDependencies": {
"eslint": "^7.30.0",
"nodemon": "^2.0.4",
"sqlite3": "^5.0.0"
}
}