-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 886 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
{
"name": "todo-trpc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build:back": "tsc",
"start": "node dist/index.js",
"build:front": "npm run build --prefix client",
"build:prod": "npm run build:back && npm run build:front",
"clean": "rm -rf dist && rm -rf client/dist && rm -rf data",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"ts-node-dev": "^2.0.0"
},
"dependencies": {
"@trpc/server": "^10.10.0",
"@typegoose/typegoose": "^10.1.1",
"@types/cors": "^2.8.13",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
"mongoose": "^6.9.1",
"zod": "^3.20.3"
}
}