-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (64 loc) · 1.65 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
{
"name": "fastify-resty",
"version": "0.0.0",
"private": true,
"license": "MIT",
"workspaces": {
"packages": [
"packages/*",
"examples/*"
],
"nohoist": [
"**/fastify-resty-blog",
"**/fastify-resty-blog/**",
"**/fastify-resty-quickstart",
"**/fastify-resty-quickstart/**"
]
},
"scripts": {
"build": "lerna run build --ignore=@fastify-resty/core",
"prebuild": "lerna run build --scope=@fastify-resty/core",
"test": "jest",
"lint": "eslint .",
"semantic-bump": "lerna version --conventional-commits --no-private -y",
"release": "lerna publish from-package -y"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/http-errors": "^1.8.0",
"@types/jest": "^26.0.14",
"@types/json-schema": "^7.0.6",
"@types/lodash": "^4.14.159",
"@types/node": "^14.14.6",
"@types/qs": "^6.9.4",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"fastify": "^3.8.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"sqlite3": "^5.0.0",
"supertest": "^6.0.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0-pre.52",
"typeorm": "^0.2.29",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"engines": {
"node": ">= 10.16.0",
"yarn": "^1.0.0"
}
}