-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
71 lines (71 loc) · 2.01 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
{
"name": "goexpert-backend",
"version": "0.0.0",
"description": "goexpert peoject backend",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc -p .",
"test": "jest"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.js": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,scss,sass,md}": "prettier --write"
},
"dependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@sendgrid/mail": "^7.4.7",
"@shelf/jest-mongodb": "^2.1.0",
"@types/lodash": "^4.14.176",
"babel-jest": "^27.2.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongodb": "^4.1.1",
"mongoose": "^6.0.5",
"morgan": "~1.9.1",
"nodemon": "^2.0.12",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.1",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/lodash": "^4.14.176",
"@types/morgan": "^1.9.3",
"@types/node": "^16.9.1",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"jest": "^27.2.1",
"lint-staged": "^11.1.2",
"prettier": "2.4.0",
"supertest": "^6.1.6",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}