-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.03 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.03 KB
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
{
"name": "solid-api-node",
"version": "1.0.0",
"main": "index.js",
"author": "Maximiliano Dalla Porta <gigamax13@gmail.com>",
"license": "MIT",
"scripts": {
"dev:start": "cross-env NODE_ENV=development tsnd --transpile-only --respawn --ignore-watch node_modules src/server.ts",
"lint": "eslint src/**/*.ts --fix",
"test": "jest"
},
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-joi-validation": "^5.0.0",
"helmet": "^4.1.1",
"joi": "^17.2.1",
"nodemailer": "^6.4.13",
"uuid": "^8.3.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.8",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.15",
"@types/joi": "^14.3.4",
"@types/nodemailer": "^6.4.0",
"@types/sinon": "^9.0.8",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"commitizen": "^4.2.1",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"jest": "^26.6.1",
"prettier": "^2.1.2",
"prettier-config-standard": "^1.0.1",
"sinon": "^9.2.0",
"ts-jest": "^26.4.2",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}