-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.19 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
{
"name": "nodejs-api-realworld",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/faker": "^4.1.10",
"@types/jest": "^25.1.3",
"@types/jsonwebtoken": "^8.3.8",
"@types/lodash": "^4.14.149",
"@types/morgan": "^1.9.0",
"@types/node": "^12.12.30",
"@types/supertest": "^2.0.8",
"@types/swagger-jsdoc": "^3.0.2",
"@types/swagger-ui-express": "^3.0.1",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"date-fns": "^2.11.0",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"express-validator": "^6.4.0",
"husky": "^8.0.3",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.14.0",
"mongoose": "^5.13.20",
"morgan": "^1.9.1",
"swagger-jsdoc": "^3.5.0",
"swagger-ui-express": "^4.1.3",
"ts-jest": "^25.2.1",
"ts-node": "^8.7.0",
"typescript": "^4.1.6",
"uuid": "^7.0.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.2",
"faker": "^4.1.0",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"supertest": "^4.0.2"
},
"scripts": {
"build": "tsc",
"serve": "node ./dist/index.js",
"dev": "nodemon -- -r dotenv/config ./src/index.ts",
"dev:debug": "nodemon --inspect ./src/index.ts",
"start": "npm run build && npm run serve",
"test": "jest --runInBand --detectOpenHandles",
"seeder": "ts-node ./database/seeder/index.ts",
"lint": "eslint './src/**/*.{ts,js}'",
"lint:fix": "npm run lint -- --fix",
"coverage": "jest --runInBand --detectOpenHandles --coverage",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tranlehaiquan/nodejs-api-realworld.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tranlehaiquan/nodejs-api-realworld/issues"
},
"homepage": "https://github.com/tranlehaiquan/nodejs-api-realworld#readme"
}