-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.96 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@wyvarn/calamus",
"private": false,
"description": "express blog api",
"main": "server.js",
"version": "1.27.9",
"repository": "git@github.com:Wyvarn/calamus.git",
"author": "BrianLusina <12752833+BrianLusina@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development npm-run-all --parallel watch:build watch:server",
"serve": "node -r dotenv/config --inspect=5858 build/server.js",
"build": "npm run clean && webpack",
"clean": "rm -rf build",
"watch:server": "nodemon",
"watch:build": "webpack --watch",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint --fix src/ --ext .ts",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test": "jest --runInBand --forceExit --verbose",
"test:api-doc": "dredd apiary.apib http://localhost:3000",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.20.0",
"helmet": "^5.0.2",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mongoose": "^8.8.3",
"winston": "^3.3.0",
"snyk": "^1.1064.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@shelf/jest-mongodb": "^2.2.0",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.13",
"@types/hapi__joi": "^17.1.8",
"@types/helmet": "^0.0.46",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.181",
"@types/node": "^17.0.31",
"@types/mongoose": "^5.11.96",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.20.0",
"colors": "^1.4.0",
"concurrently": "^7.0.0",
"dotenv": "^14.2.0",
"dredd": "^13.1.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.4.4",
"jest-runner-tsc": "^1.6.0",
"lint-staged": "^12.3.4",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.1",
"supertest": "^6.2.2",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.7",
"ts-node": "^10.4.0",
"typescript": "^4.6.2",
"webpack": "^5.94.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0",
"webpack-shell-plugin": "^0.5.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"snyk": true
}