forked from Bielik20/nx-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.93 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.93 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
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",
"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",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"commit": "git-cz",
"tools": "tsc --project tools/src/tsconfig.json",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@nx/devkit": "16.0.3",
"@swc/helpers": "0.5.1",
"bestzip": "^2.2.1",
"execa": "^5.0.0",
"flat": "^5.0.2",
"fs-extra": "^11.1.1",
"glob": "^8.1.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@nx/jest": "16.0.3",
"@nx/js": "16.0.3",
"@nx/plugin": "16.0.3",
"@nx/workspace": "16.0.3",
"@swc-node/register": "^1.4.2",
"@swc/cli": "0.1.62",
"@swc/core": "~1.3.51",
"@types/flat": "^5.0.2",
"@types/fs-extra": "^11.0.1",
"@types/jest": "29.4.0",
"@types/lodash": "^4.14.191",
"@types/node": "18.14.0",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "16.0.3",
"eslint": "8.22.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"jsonc-eslint-parser": "^2.1.0",
"lint-staged": "^13.2.0",
"nx": "16.0.3",
"nx-cloud": "16.0.5",
"prettier": "2.8.7",
"semantic-release": "^21.0.0",
"semver": "^7.3.8",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"tslib": "^2.4.0",
"typescript": "4.9.5",
"@nx/devkit": "16.0.3",
"@nx/linter": "16.0.3",
"@nx/eslint-plugin": "16.0.3",
"@nx/webpack": "16.0.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}