-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "tetris-apis",
"version": "1.0.0",
"description": "A simple tetris backend to store favorite tetris repos",
"main": "index.js",
"author": "Dropcode",
"license": "MIT",
"scripts": {
"start": "node build/index.js",
"serve": "tsc-watch --onSuccess \"node ./build/index.js\"",
"build": "tsc"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.15",
"@types/pino": "^7.0.5",
"@types/pino-pretty": "^4.7.4",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"tsc-watch": "^4.6.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@types/cors": "^2.8.12",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"helmet": "^5.0.2",
"pg": "^8.7.3",
"pino": "^7.6.5",
"pino-pretty": "^7.5.1",
"typeorm": "^0.2.41",
"zod": "^3.11.6"
}
}