-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.59 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
{
"name": "example-typescript-rest-api-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"dev": "tsnd --respawn src/index.ts",
"build": "npm run clean && tsc -p tsconfig.build.json && npm run swagger",
"clean": "rimraf dist",
"lint": "eslint ./src/**/*.ts ./test/**/*.ts --fix",
"pretest": "cross-env NODE_ENV=test npm run build && npm run lint",
"test": "cross-env NODE_ENV=test ENV_FILE=.env jest",
"test-ci": "cross-env NODE_ENV=ci ENV_FILE=.env jest",
"swagger": "swaggerGen -c ./swagger.config.yml"
},
"author": "snava10",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"log4js": "^6.3.0",
"mongoose": "~5.10.19",
"passport-http": "^0.3.0",
"rxjs": "^6.6.3",
"typed-rest-client": "^1.8.0",
"typescript-ioc": "^3.2.2",
"typescript-rest": "^3.0.2",
"typescript-rest-ioc": "~1.0.0"
},
"devDependencies": {
"@types/cors": "~2.8.8",
"@types/express": "~4.17.9",
"@types/jest": "^26.0.16",
"@types/mongoose": "~5.10.1",
"@types/passport-http": "^0.3.8",
"@types/passport-jwt": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"cross-env": "^7.0.3",
"eslint": "^7.14.0",
"eslint-config-google": "^0.14.0",
"jest": "^26.6.3",
"testcontainers": "^6.4.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0",
"typescript": "^4.1.2",
"typescript-rest-swagger": "~1.1.5",
"xmlhttprequest": "^1.8.0"
}
}