-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.65 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
{
"name": "express-ts",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"coverage": "vitest run --coverage",
"test": "vitest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/supertest": "^6.0.1",
"@types/swagger-ui-express": "^4.1.6",
"@types/yamljs": "^0.2.34",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.41.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"knex": "^3.0.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"objection": "^3.1.2",
"pg": "^8.11.3",
"swagger-ui-express": "^5.0.0",
"ts-node": "^10.9.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.0",
"@types/express": "^4.17.17",
"@types/node": "^20.6.0",
"@types/pg": "^8.10.9",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@vitest/coverage-v8": "^1.1.0",
"concurrently": "^8.2.1",
"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.5.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
}
}