-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1022 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": "json-rpc-mongodb-api",
"scripts": {
"dev": "bun --watch src/server.ts",
"client": "bun src/client.ts",
"format": "prettier --write \"src/**/*.ts\"",
"husky": "husky install",
"build": "bun build --compile --minify ./src/server.ts --outfile server && bun build --compile --minify ./src/client.ts --outfile client",
"prod:server": "./server",
"prod:client": "./client"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"express": "^4.19.2",
"faker-js": "^1.0.0",
"joi": "^17.13.1",
"json-rpc-2.0": "^1.7.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.0"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/bcryptjs": "^2.4.6",
"@types/body-parser": "^1.19.5",
"@types/bun": "^1.1.3",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.12",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}