-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "waldemar-node-course",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "yarn build && node dist/src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"test:function": "jest --projects ./test --runInBand",
"start:dev": "ts-node-dev src/index.ts",
"lint": "eslint ./src --ext .ts",
"lint-fix": "eslint ./src --ext .ts --fix",
"style:fix": "prettier --write src/**/*.ts test/**/*.ts",
"style:check": "prettier --check src/**/*.ts test/**/*.ts",
"test:unit": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@overnightjs/core": "^1.7.4",
"axios": "^0.21.4",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"module-alias": "^2.2.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/config": "0.0.39",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"@types/module-alias": "^2.0.0",
"@types/node": "^13.13.2",
"@types/supertest": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"jest": "^26.0.1",
"prettier": "^2.4.1",
"supertest": "^4.0.2",
"ts-jest": "^26.0.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
}
}