-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 975 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": "restapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "tsc",
"start-server": "node dist/server.js",
"start-dev-server": "tsc-watch --onSuccess \"node dist/server.js \"",
"dev": "npm-run-all clean build start-dev-server",
"populate-db": "npm-run-all clean build run-populate-db-script",
"run-populate-db-script": "node dist/models/populate-db.js",
"delete-db": "npm-run-all clean build run-delete-db-script",
"run-delete-db-script": "node dist/models/delete-db.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
},
"dependencies": {
"dotenv": "^16.4.1",
"express": "^4.18.2",
"pg": "^8.11.3",
"reflect-metadata": "^0.2.1",
"typeorm": "^0.3.20",
"winston": "^3.11.0"
}
}