-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.42 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.42 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
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"script": "node scripts/scriptHandler.js",
"run": "ts-node app.ts",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"db:merge": "npx aurora",
"db:generate": "npx prisma generate",
"db:types": "npm run db:merge && npm run db:generate",
"db:migrate": "npm run db:types && npx prisma migrate dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"argon2": "^0.30.2",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fastify": "^4.9.2",
"inquirer": "^8.2.5",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/lodash": "^4.14.189",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.9",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prisma": "^4.6.1",
"prisma-aurora": "^1.3.9",
"typescript": "^4.8.4"
}
}