generated from tsedio/tsed-example-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.72 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@tsed/mongoose-example",
"version": "1.0.0",
"description": "Here an example project with Mongoose and Ts.ED framework.",
"scripts": {
"clean": "rimraf '{src,test}/**/*.{js,js.map}'",
"build": "tsc --build tsconfig.json",
"test": "yarn clean && yarn test:lint && yarn test:coverage",
"test:unit": "cross-env NODE_ENV=test mocha",
"test:coverage": "cross-env NODE_ENV=test nyc mocha",
"test:lint": "tslint --project tsconfig.json",
"test:lint:fix": "tslint --project tsconfig.json --fix",
"travis:deploy-once": "travis-deploy-once",
"travis:coveralls": "nyc report --reporter=text-lcov | coveralls",
"tsc": "tsc --project tsconfig.json",
"tsc:w": "tsc --project tsconfig.json -w",
"start:dev": "nodemon --watch \"src/**/*.ts\" --ignore \"node_modules/**/*\" --exec ts-node src/index.ts",
"start": "node ./dist/index.js",
"docker:build": "yarn build && docker-compose build",
"deploy": "exit 0"
},
"author": "",
"license": "MIT",
"dependencies": {
"@tsed/ajv": "6.75.11",
"@tsed/common": "6.75.11",
"@tsed/core": "6.75.11",
"@tsed/di": "6.75.11",
"@tsed/exceptions": "6.75.11",
"@tsed/mongoose": "6.75.11",
"@tsed/platform-express": "6.75.11",
"@tsed/swagger": "6.75.11",
"@tsed/testing-mongoose": "6.75.11",
"@types/cors": "^2.8.12",
"@types/jsonwebtoken": "^8.5.6",
"@types/nunjucks": "^3.2.0",
"@types/serve-static": "^1.13.10",
"@types/swagger-schema-official": "2.0.21",
"algoliasearch": "^4.11.0",
"axios": "^0.24.0",
"body-parser": "1.19.0",
"compression": "1.7.4",
"cookie-parser": "1.4.5",
"cors": "^2.8.5",
"cross-env": "7.0.2",
"express": "4.17.1",
"express-session": "1.17.1",
"firebase-admin": "9.5.0",
"jose": "^4.3.7",
"jsonwebtoken": "^8.5.1",
"markdown-it": "^12.2.0",
"method-override": "^3.0.0",
"mongoose": "5.12.2",
"nunjucks": "^3.2.3",
"react-select": "^5.2.1",
"serve-static": "^1.13.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "4.2.12",
"@types/chai-as-promised": "7.1.3",
"@types/express": "^4.17.13",
"@types/http-proxy": "^1.17.1",
"@types/mocha": "8.2.2",
"@types/node": "14.14.34",
"@types/request-promise": "^4.1.42",
"@types/sinon": "9.0.8",
"@types/sinon-chai": "3.2.4",
"@types/supertest": "2.0.10",
"chai": "4.2.0",
"chai-as-promised": "^7.1.1",
"concurrently": "5.3.0",
"mocha": "8.2.1",
"nodemon": "1.19.4",
"nyc": "15.1.0",
"rimraf": "^3.0.0",
"sinon": "9.0.3",
"sinon-chai": "3.6.0",
"supertest": "6.0.0",
"ts-node": "10.2.1",
"tslint": "6.1.3",
"typescript": "4.2.4"
},
"engines": {
"node": "14.0.0"
}
}