-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.56 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
49
50
51
52
53
{
"name": "social-net-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && tsc-alias",
"lint": "eslint ./src --ext .js,.cjs,.mjs,.ts,.cts,.mts",
"format": "prettier --write ./src",
"start": "NODE_ENV=production node build/src/index.js",
"dev": "tsc && tsc-alias && node build/src/index.js",
"nodemon": "nodemon src/index.ts --exec \"npm run dev\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.10.2",
"axios": "^1.6.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"socket.io": "^4.7.2",
"yup": "^1.3.3"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/multer": "^1.4.11",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"prisma": "^5.10.2",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3"
}
}