-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.71 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
54
55
56
57
58
59
60
61
62
63
{
"name": "back-bling-rw",
"version": "1.0.0",
"description": "backend development bling rw",
"main": "src/app.ts",
"scripts": {
"dev": "nodemon src/server.ts",
"build": "tsc --project tsconfig.build.json",
"clean": "rimraf dist",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"engines": {
"node": "20.11.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vcsil/back_bling_rw.git"
},
"keywords": [
"Node.js",
"Typescript"
],
"author": "vcsil",
"license": "MIT",
"bugs": {
"url": "https://github.com/vcsil/back_bling_rw/issues"
},
"homepage": "https://github.com/vcsil/back_bling_rw#readme",
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin": "^1.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@prisma/client": "^5.10.2",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"express-async-errors": "^3.1.1",
"joi": "^17.12.2",
"prisma": "^5.10.2"
}
}