forked from rohenaz/bmap-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
{
"type": "module",
"dependencies": {
"@gorillapool/js-junglebus": "^0.4.1",
"JSONStream": "^1.3.5",
"better-queue": "^3.8.10",
"bmapjs": "^0.3.5",
"body-parser": "^1.20.0",
"bpu": "^0.0.13",
"chalk": "^5.0.1",
"cli-spinner": "^0.2.10",
"cors": "^2.8.5",
"ejs": "^3.1.2",
"event-stream": "^4.0.1",
"eventsource": "^1.0.7",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"got": "^11.0.2",
"mingo": "^6.1.0",
"mongodb": "^3.6.3",
"mongoose": "^5.10.6",
"node-fetch": "^2.6.1",
"node-persist": "^3.0.5",
"prompt-async": "^0.9.9"
},
"devDependencies": {
"@types/better-queue": "^3.8.2",
"@types/cors": "^2.8.12",
"@types/event-stream": "^3.3.34",
"@types/express": "^4.17.6",
"@types/mongodb": "^3.5.27",
"@types/mongoose": "^5.7.36",
"@types/node": "^18.7.16",
"@types/node-fetch": "^2.5.7",
"@types/node-persist": "^3.0.0",
"@types/whatwg-url": "^11.0.0",
"eslint-plugin-node": "latest",
"nodemon": "^2.0.19",
"typescript": "^4.8.3"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"scripts": {
"build": "tsc",
"dev": "ts-node index.ts",
"start": "nodemon ./build/index.js",
"prod": "yarn build && yarn start"
}
}