-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.68 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
98
99
100
{
"name": "@ds3nx/root",
"version": "0.0.0",
"license": "MIT",
"description": "DS3 Nx plugins",
"author": {
"name": "Julián Mulet",
"url": "https://github.com/uxtechie"
},
"repository": {
"type": "github",
"url": "https://github.com/ds3engine/ds3nx"
},
"bugs": {
"url": "https://github.com/ds3engine/ds3nx/issues"
},
"keywords": [
"nx",
"nx-plugin",
"monorepo",
"preact",
"wmr"
],
"private": true,
"scripts": {
"build:all": "nx run-many --target build --all --parallel 8 --exclude utils-testing",
"commit": "git-cz",
"check:commit": "node ./tools/scripts/commit-lint.js",
"check:format": "nx format:check --all",
"fix:format": "nx format:write --all",
"check:staged:test": "nx affected:test --parallel --uncommitted",
"check:staged:lint": "nx affected:lint --fix --parallel --uncommitted",
"check:staged:format": "pretty-quick",
"check:staged": "pnpm run check:staged:test && pnpm run check:staged:lint && pnpm run check:staged:format",
"check:lock-files": "node ./tools/scripts/check-lock-files.js",
"preinstall": "npx only-allow pnpm",
"postinstall": "pnpm audit",
"prepare": "is-ci || husky install"
},
"devDependencies": {
"@jscutlery/semver": "2.29.X",
"@nrwl/devkit": "15.6.X",
"@nrwl/eslint-plugin-nx": "15.6.X",
"@nrwl/jest": "15.6.X",
"@nrwl/js": "15.6.X",
"@nrwl/linter": "15.6.X",
"@nrwl/nx-cloud": "latest",
"@nrwl/nx-plugin": "15.6.X",
"@nrwl/workspace": "15.6.X",
"@swc-node/register": "1.5.5",
"@swc/cli": "0.1.59",
"@swc/core": "1.3.28",
"@swc/jest": "0.2.24",
"@types/jest": "28.1.X",
"@types/node": "16.11.X",
"@typescript-eslint/eslint-plugin": "5.48.X",
"@typescript-eslint/parser": "5.48.X",
"all-contributors-cli": "6.24.X",
"commitizen": "4.2.X",
"cz-customizable": "7.0.X",
"eslint": "8.15.X",
"eslint-config-prettier": "8.1.X",
"husky": "8.0.X",
"is-ci": "3.0.X",
"jest": "28.1.X",
"jest-environment-jsdom": "28.1.X",
"jsonc-eslint-parser": "2.1.X",
"lockfile-lint": "4.10.X",
"ngx-deploy-npm": "4.3.X",
"nx": "15.6.X",
"prettier": "2.8.X",
"pretty-quick": "3.1.X",
"ts-jest": "28.0.X",
"ts-node": "10.9.X",
"typescript": "4.9.X"
},
"dependencies": {
"@swc/helpers": "0.4.14",
"tslib": "2.4.X"
},
"pnpm": {
"overrides": {
"semver-regex": "npm:semver-regex@3.1.X",
"got": "npm:got@11.8.X"
}
},
"engines": {
"node": ">=16",
"pnpm": ">=7.9"
},
"volta": {
"node": "16.17.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"prettier": "./.prettierrc.js"
}