-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.38 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
64
65
66
67
68
69
70
71
72
73
{
"name": "backend-fsw",
"version": "1.0.0",
"description": "Backend Final Project RESTful API",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"start": "node dist/index.js",
"setup": "npx knex migrate:down --knexfile src/config/knexfile.ts && npx knex migrate:latest --knexfile src/config/knexfile.ts && npx knex seed:run --knexfile src/config/knexfile.ts",
"knex": "npx knex --knexfile src/config/knexfile.ts",
"keys": "cd keys && ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Synrgy-Academy-Final-Project/Backend-FSW.git"
},
"author": "Kelompok 4",
"license": "MIT",
"bugs": {
"url": "https://github.com/Synrgy-Academy-Final-Project/Backend-FSW/issues"
},
"homepage": "https://github.com/Synrgy-Academy-Final-Project/Backend-FSW#readme",
"devDependencies": {
"@faker-js/faker": "^8.4.0",
"@flydotio/dockerfile": "^0.5.0",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/multer": "^1.4.11",
"@types/node": "^20.10.6",
"@types/pg": "^8.10.9",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitest/coverage-v8": "^1.2.2",
"concurrently": "^8.2.2",
"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.6.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.2",
"supertest": "^6.3.4",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cloudinary": "^2.0.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"multer": "^1.4.5-lts.1",
"objection": "^3.1.3",
"pg": "^8.11.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-node": "^10.9.2",
"uuid": "^9.0.1"
}
}