-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.76 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "status-app-backend",
"version": "0.0.0",
"author": {
"name": "lambdagg",
"email": "lambda@tuta.io",
"url": "https://github.com/lambdagg"
},
"scripts": {
"build": "tsc",
"dev": "set debug=* && ts-node-dev src/index.ts",
"prod": "tsc && node ./dist/index.js",
"migration:gen": "typeorm-ts-node-commonjs migration:generate src/migration/migration -d src/data-source.ts",
"migration:run": "typeorm-ts-node-commonjs migration:run -d src/data-source.ts",
"migration:revert": "typeorm-ts-node-commonjs migration:revert -d src/data-source.ts",
"start": "ts-node src/index.ts",
"typeorm": "typeorm-ts-node-commonjs"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/minimist": "^1.2.2",
"@types/node": "^18.15.11",
"@types/ping": "^0.4.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"ts-mixer": "^6.0.3",
"ts-node": "^10.9.1",
"typescript": "5.0.3"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/jsonwebtoken": "^9.0.1",
"axios": "^1.3.4",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^8.3.0",
"body-parser": "^1.20.2",
"chalk": "^4.1.2",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"minimist": "^1.2.8",
"ping": "^0.4.4",
"query-string": "^8.1.0",
"reflect-metadata": "^0.1.13",
"short-uuid": "^4.2.2",
"ts-node-dev": "^2.0.0",
"typeorm": "^0.3.12",
"yaml": "^2.2.1"
}
}