-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 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
{
"name": "backend-f1",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"build": "npm run swagger & tsc",
"start": "npm run build & node dist/src/server.js",
"start:dev": "ts-node-dev src/server.ts",
"test": "npx jest",
"swagger": "npx tsoa spec-and-routes --basePath='/api'",
"prettier": "prettier --write \"src/**/*{json,js,ts}\"",
"prettier:check": "prettier --check \"src/**/*{json,js,ts}\"",
"prepare": "husky install",
"import-db": "npx ts-node data/db-import.ts",
"export-db": "npx ts-node data/db-export.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"better-sqlite3": "^9.4.5",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"express": "^4.18.2",
"husky": "^8.0.3",
"i18next": "^23.7.11",
"json-2-csv": "^4.1.0",
"kysely": "^0.26.3",
"picocolors": "^1.0.0",
"swagger-ui-express": "^5.0.0",
"tslib": "^2.6.2",
"tsoa": "^6.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"@types/better-sqlite3": "^7.6.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/joi": "^17.2.3",
"@types/node": "^18.19.3",
"@types/supertest": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"concurrently": "^7.6.0",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"type-fest": "^3.13.1",
"typescript": "^4.9.5"
}
}