-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.61 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
{
"name": "typescript-api",
"version": "1.0.0",
"description": "Typescript node api",
"main": "main.js",
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/src/main.js",
"start:dev": "ts-node-dev src/main.ts",
"test": "npm run test:unit && npm run test:functional",
"test:functional": "jest --projects ./test --runInBand",
"test:unit": "jest --verbose --watch",
"lint": "eslint ./src ./test --ext .ts",
"lint:fix": "eslint ./src ./test --ext .ts --fix",
"style:check": "prettier --check src/**/*.ts test/**/*.ts",
"style:fix": "prettier --write src/**/*.ts test/**/*.ts"
},
"author": "realrgt",
"license": "ISC",
"dependencies": {
"@overnightjs/core": "^1.7.6",
"@types/nock": "^11.1.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"config": "^3.3.6",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongoose": "^5.12.13",
"nock": "^13.1.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^5.0.0",
"@types/config": "0.0.38",
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"@types/jsonwebtoken": "^8.5.2",
"@types/module-alias": "^2.0.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^15.6.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"jest": "^27.0.3",
"prettier": "^2.3.0",
"supertest": "^6.1.3",
"ts-jest": "^27.0.2",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.2"
}
}