-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "analytics",
"version": "0.0.0",
"author": "eventOne, Inc. <team@event1.io>",
"license": "MIT",
"scripts": {
"start": "node ./build/src/bin/www",
"dev": "DEBUG=analytics:* nodemon --watch 'src/**/*.ts' --watch 'openapi.yaml' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/bin/www.ts",
"build": "tsc",
"docs": "typedoc && npm run redoc",
"redoc": "redoc-cli bundle openapi.yaml && mv redoc-static.html docs/api.html"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"flat": "^5.0.0",
"http-errors": "^1.7.3",
"mongoose": "^5.8.7",
"morgan": "~1.9.1",
"ms": "^2.1.2",
"swagger-ui-express": "^4.1.2",
"tslib": "^1.10.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.2",
"@types/http-errors": "^1.6.3",
"@types/mongoose": "^5.5.41",
"@types/ms": "^0.7.31",
"@types/node": "^13.1.6",
"nodemon": "^2.0.2",
"redoc-cli": "^0.9.5",
"ts-node": "^8.6.1",
"typedoc": "^0.15.8",
"typescript": "^3.7.4"
}
}