-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
105 lines (105 loc) · 2.88 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
101
102
103
104
105
{
"name": "@ns3/nx-plugins",
"version": "0.0.0-development",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Bielik20/nx-plugins"
},
"scripts": {
"postinstall": "npm run tools",
"script": "node tools/src/scripts",
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"update-deps": "npx npm-check-updates -i",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"commit": "git-cz",
"tools": "tsc --project tools/src/tsconfig.json",
"prepare": "husky"
},
"private": true,
"dependencies": {
"@nx/devkit": "20.0.3",
"@nx/webpack": "20.0.3",
"@swc/helpers": "0.5.11",
"bestzip": "^2.2.1",
"colorette": "^2.0.20",
"execa": "^5.0.0",
"flat": "^5.0.2",
"fs-extra": "^11.2.0",
"glob": "^10.4.2"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@nx/eslint": "20.0.3",
"@nx/eslint-plugin": "20.0.3",
"@nx/jest": "20.0.3",
"@nx/js": "20.0.3",
"@nx/plugin": "20.0.3",
"@nx/workspace": "20.0.3",
"@swc-node/register": "1.9.2",
"@swc/cli": "0.3.14",
"@swc/core": "1.5.7",
"@types/flat": "^5.0.5",
"@types/fs-extra": "^11.0.4",
"@types/jest": "29.5.13",
"@types/lodash": "^4.17.6",
"@types/node": "20.14.9",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "16.0.3",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsonc-eslint-parser": "^2.4.0",
"lint-staged": "^15.2.7",
"nx": "20.0.3",
"prettier": "3.3.2",
"semver": "^7.6.2",
"ts-jest": "29.1.0",
"ts-node": "10.9.2",
"tslib": "^2.4.0",
"typescript": "5.5.4",
"verdaccio": "^5.31.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"nx": {
"includedScripts": []
}
}