-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "flatirons-products-api",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "ts-node-dev --esm --respawn --transpile-only src/main.ts",
"build": "tsc -p .",
"start": "node dist/main.js",
"test": "jest",
"lint": "eslint .",
"format": "prettier --write ."
},
"dependencies": {
"@types/pg": "^8.16.0",
"@types/uuid": "^10.0.0",
"dotenv": "^17.2.3",
"express": "^4.19.2",
"fast-csv": "^5.0.1",
"multer": "^1.4.5-lts.1",
"node-fetch": "^3.3.2",
"pg": "^8.16.3",
"redis": "^5.10.0",
"uuid": "^13.0.0",
"winston": "^3.19.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/multer": "^1.4.11",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.12.0",
"jest": "^30.2.0",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.3"
}
}