-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.22 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
{
"name": "typescript-api",
"version": "1.0.0",
"description": "Typescript Node.js API",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "yarn build && node dist/src/index.js",
"start:local": "ts-node-dev 'src/index.ts | pino-pretty -c' ",
"test": "yarn test:unit && yarn test:functional",
"test:unit": "jest",
"lint": "eslint ./src/ ./test --ext .ts",
"lint:fix": "eslint ./src/ ./test --ext .ts --fix",
"test:functional": "jest --projects ./test --runInBand",
"style:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts' ",
"style:fix": "prettier --write 'src/**/*.ts' 'test/**/*.ts' "
},
"keywords": [
"nodejs",
"typescript",
"api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/carlos-enginner/node-typescript-api.git"
},
"author": "Carlos Augusto",
"license": "ISC",
"bugs": {
"url": "https://github.com/carlos-enginner/node-typescript-api/issues"
},
"homepage": "https://github.com/carlos-enginner/node-typescript-api#readme",
"dependencies": {
"@overnightjs/core": "1.7.4",
"@types/cors": "2.8.6",
"@types/http-status-codes": "1.2.0",
"axios": "0.19.2",
"bcrypt": "5.0.0",
"body-parser": "1.19.0",
"config": "3.3.1",
"cors": "2.8.5",
"express": "4.17.1",
"express-pino-logger": "5.0.0",
"http-status-codes": "1.4.0",
"jsonwebtoken": "8.5.1",
"module-alias": "2.2.2",
"mongoose": "5.9.18",
"pino": "6.3.2"
},
"devDependencies": {
"@types/axios": "0.14.0",
"@types/bcrypt": "3.0.0",
"@types/config": "0.0.36",
"@types/express": "4.17.6",
"@types/express-pino-logger": "4.0.2",
"@types/jest": "25.2.2",
"@types/jsonwebtoken": "8.5.0",
"@types/module-alias": "2.0.0",
"@types/mongoose": "5.7.22",
"@types/nock": "11.1.0",
"@types/node": "^13.13.2",
"@types/pino": "6.3.0",
"@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",
"nock": "12.0.3",
"pino-pretty": "4.0.0",
"prettier": "2.0.5",
"supertest": "4.0.2",
"ts-jest": "26.0.0",
"ts-node-dev": "1.0.0-pre.61",
"typescript": "3.8.3"
}
}