-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
41
42
43
44
45
46
47
48
{
"name": "fast-typist-backend",
"version": "0.1.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "ts-node-dev -r tsconfig-paths/register src/app.ts",
"build": "tsc && tsc-alias",
"start": "node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zSorour/fast-typist-backend.git"
},
"author": "zSorour",
"license": "ISC",
"bugs": {
"url": "https://github.com/zSorour/fast-typist-backend/issues"
},
"homepage": "https://github.com/zSorour/fast-typist-backend#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.17",
"dotenv": "^16.0.3",
"prisma": "^4.7.1",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.2",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@prisma/client": "^4.7.1",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"random-words": "^1.2.1",
"redis": "^4.5.1",
"socket.io": "^4.5.4",
"zod": "^3.20.2"
}
}