-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "sample-service",
"version": "1.0.0",
"main": "service/index",
"scripts": {
"start": "npx tsc && node dist/server.js",
"clean:all": "tsc --build --clean && rm -rf dist && rm -rf event_logs",
"build": "tsc",
"validate-schema": "swagger-cli validate schema/service_schema.json",
"circular-dependency": "madge -c --extensions js,jsx,ts,tsx ./src"
},
"author": "UrbanClap Technologies India Pvt. Ltd.",
"license": "MIT",
"keywords": [],
"description": "",
"dependencies": {
"@types/lodash": "4.14.134",
"@types/node": "8.10.49",
"@types/mongodb": "3.3.1",
"@types/mongoose": "5.5.17",
"lodash": "4.17.15",
"moment": "2.22.2",
"mongoose": "5.9.2",
"sequelize": "3.35.1",
"mysql": "^2.18.1",
"nodemon": "1.19.2",
"@uc-engg/marc": "^1.0.0",
"request": "2.88.0",
"@typegoose/typegoose": "6.5.0",
"typescript": "3.8.3"
},
"devDependencies": {
"@types/validator": "10.11.3",
"@typescript-eslint/parser": "2.33.0",
"lint-staged": "9.5.0",
"swagger-cli": "4.0.4",
"ts-node": "8.4.1",
"madge": "3.10.0"
},
"service_type": "typescript"
}