-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
62 lines (62 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
{
"name": "foxify",
"private": true,
"description": "FoxifyJS monorepo",
"homepage": "https://foxify.js.org",
"license": "MIT",
"repository": "github:foxifyjs/foxify",
"bugs": {
"url": "https://github.com/foxifyjs/foxify/issues"
},
"keywords": [
"foxify"
],
"scripts": {
"prepare": "is-ci || husky install",
"document": "typedoc",
"benchmark": "pnpm -r --filter './benchmarks/*' start",
"lint": "nx run-many -t lint",
"lint:fix": "pnpm -r lint:fix",
"build": "nx run-many -t build",
"test": "nx run-many -t test",
"test:coverage": "pnpm test -- -- --coverage",
"test:ci": "pnpm test:coverage --ci --verbose"
},
"engines": {
"node": ">=16",
"pnpm": "^8.6.2"
},
"packageManager": "pnpm@8.6.2",
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@nrwl/jest": "^16.3.2",
"@nrwl/linter": "^16.3.2",
"@nrwl/workspace": "^16.3.2",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.43.0",
"eslint-config-noir": "^1.4.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"nx": "16.3.2",
"nx-cloud": "^16.0.5",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typescript": "^5.1.3"
},
"workspaces": [
"benchmarks/*",
"examples/*",
"packages/*"
]
}