-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "api-article",
"version": "1.0.0",
"description": "CRUD API for Article page",
"main": "index.ts",
"scripts": {
"test": "jest --config ./jest.config.ts",
"start": "nodemon ./app/index.ts",
"eslint": "eslint ."
},
"author": "SYNRGY-Kelompok_3",
"license": "ISC",
"dependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"cloudinary": "^1.41.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"knex": "^3.1.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.0.2",
"objection": "^3.1.3",
"pg": "^8.11.3",
"ts-node": "^10.9.2",
"uuid-int": "^3.1.0"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.0",
"@types/jest": "^29.5.12",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.4",
"@types/pg": "^8.10.9",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"concurrently": "^8.2.1",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"prettier": "^3.2.4",
"supertest": "^6.3.4",
"supertest-as-promised": "^4.0.2",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}