-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.76 KB
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
{
"name": "nonton",
"version": "1.0.0",
"main": "index.ts",
"author": "Antoni Saputra",
"license": "MIT",
"scripts": {
"dev": "nodemon src/index.ts",
"migrate:dev": "npx prisma migrate dev --name init"
},
"dependencies": {
"@prisma/client": "^4.16.1",
"@types/chalk": "^2.2.0",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"chalk": "4.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"module-alias": "^2.2.3",
"prisma": "^4.16.1",
"validator": "^13.9.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/node": "^20.3.1",
"@types/validator": "^13.7.17",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"airbnb": "^0.0.2",
"eslint": "^8.43.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"_moduleAliases": {
"@config": "./src/config",
"@router": "./src/router",
"@controller": "./src/controller",
"@lib": "./src/lib",
"@model": "./src/model",
"@service": "./src/service",
"@interface": "./src/interface",
"@repository": "./src/repository",
"@error": "./src/error",
"@middleware": "./src/middleware",
"@utils": "./src/utils"
}
}