-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.34 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.34 KB
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
36
37
38
39
40
41
42
43
44
45
{
"name": "server-practice",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"prod": "npm run build && npm run migration:run && npm run start",
"dev": "npm run build && npm run migration:run && concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"typeorm": "typeorm-ts-node-commonjs -d src/db/ormConfig.ts",
"migration:show": "npm run typeorm migration:show",
"migration:create": "ts-node scripts/migration-create.js",
"migration:run": "npm run typeorm migration:run",
"migration:revert": "npm run typeorm migration:revert"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/basic-auth": "^1.1.3",
"@types/cors": "^2.8.13",
"@types/pg": "^8.10.2",
"basic-auth": "^2.0.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"fs": "^0.0.1-security",
"https": "^1.0.0",
"jsonschema": "^1.4.1",
"pg": "^8.11.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.17",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"@types/yargs": "^17.0.24",
"concurrently": "^8.2.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}