-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 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
{
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"knex": "^3.0.1",
"objection": "^3.1.2",
"pg": "^8.11.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.8.10",
"@types/pg": "^8.10.8",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@vitest/coverage-v8": "^1.1.0",
"concurrently": "^8.2.2",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"typescript": "^5.2.2",
"vitest": "^1.0.4"
},
"name": "backend-nodejs",
"version": "1.0.0",
"description": "We-Fly Backend Node Js",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/src/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/src/index.js\"",
"test": "vitest --coverage",
"migrate": "knex migrate:latest",
"seed": "knex seed:run"
},
"author": "",
"license": "ISC"
}