-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.05 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": "cani-express",
"version": "2.0.0",
"description": "Backend for circle animation",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && npm run migration && kysely-codegen --dialect postgres && tsc",
"predev": "kysely-codegen --dialect postgres",
"dev": "tsx --watch index.ts",
"start": "node dist/index.js",
"migration": "tsx db/migrator.ts",
"tsc": "tsc --noEmit"
},
"author": "pomubry",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^9.0.0",
"kysely": "^0.26.1",
"pg": "^8.11.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.4.5",
"@types/pg": "^8.10.2",
"kysely-codegen": "^0.10.1",
"rimraf": "^5.0.1",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
}
}