-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 905 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 905 Bytes
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
{
"name": "organization-registry",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"build": "tsc",
"dev": "ts-node-dev --respawn src/index.ts "
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.17",
"adm-zip": "^0.5.10",
"axios": "^1.4.0",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"knex": "^2.4.2",
"pg": "^8.11.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"yauzl": "^2.10.0",
"zlib": "^1.0.5"
},
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/cors": "^2.8.13",
"@types/yauzl": "^2.10.0",
"ts-node-dev": "^2.0.0"
},
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
}
}