-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 757 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 757 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
{
"name": "node-postgres",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --transpile-only --no-notify --ignore-watch node_modules src/server.ts",
"knex:migrate": "knex --knexfile src/knexfile.ts migrate:latest",
"knex:seed": "knex --knexfile src/knexfile.ts seed:run",
"knex:rollback": "knex --knexfile src/knexfile.ts migrate:rollback"
},
"dependencies": {
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"knex": "^0.21.5",
"pg": "^8.3.3",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.8",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0-pre.62",
"typescript": "^4.0.2"
}
}