-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"name": "swe-interview",
"version": "1.0.0",
"description": "Node.js TypeScript project for interview",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"test": "jest",
"migrate": "knex --knexfile src/knexfile.ts migrate:latest",
"seed": "knex --knexfile src/knexfile.ts seed:run"
},
"dependencies": {
"csv-parser": "^3.1.0",
"express": "^4.18.2",
"joi": "^17.9.2",
"knex": "^3.1.0",
"node-cache": "^5.1.2",
"pg": "^8.13.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/knex": "^0.16.1",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}