-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 916 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
35
{
"name": "ark-poc-api",
"version": "0.0.1",
"description": "backend service for the ark poc",
"main": "src/index.ts",
"author": "Thabo",
"license": "MIT",
"private": true,
"scripts": {
"build": "npx tsc",
"preview": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only --exit-child --watch src ./src/index.ts",
"start": "ts-node ./src/index.ts"
},
"dependencies": {
"@prisma/client": "^5.0.0",
"bcryptjs": "^2.4.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.1",
"pg": "^8.11.1",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.4.2",
"prisma": "^5.0.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
}
}