-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "@glitchjsy/data-api",
"version": "1.0.0",
"description": "Public API for Open Data",
"author": "Luke <[email protected]>",
"license": "MIT",
"main": "dist/src/server.js",
"scripts": {
"build": "tsc",
"start": "node .",
"dev:start": "npm-run-all build start",
"dev": "nodemon --signal SIGINT --watch src -e ts,ejs --exec npm run dev:start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glitchjsy/data-api.git"
},
"keywords": [
"opendata",
"open-data",
"jersey",
"gov.je"
],
"dependencies": {
"apicache": "^1.6.3",
"body-parser": "^1.20.2",
"chalk": "4.0.0",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"mysql2": "^3.10.0",
"puppeteer": "^22.10.1",
"puppeteer-cluster": "^0.24.0",
"redis": "^4.6.14"
},
"devDependencies": {
"@types/apicache": "^1.6.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.14.2",
"@types/redis": "^4.0.11",
"typescript": "^4.6.3"
}
}