-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.1 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
{
"name": "@ngs/source",
"version": "1.0.0",
"license": "MIT",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "nx run-many -t build",
"clean": "rimraf -g \"./packages/**/out-tsc\" \"./packages/**/dist\" \"./coverage\"",
"commitlint:config": "is-ci || nx build commitlint-config",
"format": "prettier --cache --write",
"lint": "nx run-many -t lint",
"migrate": "nx migrate --run-migrations",
"postinstall": "npm run commitlint:config && npm run prettier:config",
"prepare": "is-ci || husky",
"prettier:config": "is-ci || nx build prettier-config",
"test": "nx run-many -t test",
"update": "nx migrate latest",
"validate": "npm run lint && npm test && npm run build"
},
"devDependencies": {
"@actions/core": "~1.11.1",
"@actions/github": "~6.0.0",
"@commitlint/cli": "~19.6.1",
"@commitlint/config-nx-scopes": "~19.5.0",
"@commitlint/types": "~19.5.0",
"@nx/eslint": "20.4.0",
"@nx/eslint-plugin": "20.4.0",
"@nx/jest": "20.4.0",
"@nx/js": "20.4.0",
"@nx/node": "20.4.0",
"@prettier/plugin-xml": "~3.4.1",
"@swc-node/register": "~1.10.9",
"@swc/core": "~1.10.12",
"@swc/helpers": "~0.5.15",
"@types/figlet": "~1.7.0",
"@types/jest": "~29.5.14",
"@types/node": "~22.13.0",
"@types/semver": "~7.5.8",
"@typescript-eslint/eslint-plugin": "~7.16.1",
"@typescript-eslint/parser": "~7.16.1",
"colors": "~1.4.0",
"commander": "~13.1.0",
"cross-env": "~7.0.3",
"dotenv": "~16.4.7",
"eslint": "~8.57.1",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-jest": "~28.11.0",
"eslint-plugin-jest-formatting": "~3.1.0",
"figlet": "~1.8.0",
"husky": "~9.1.7",
"is-ci": "~4.1.0",
"jest": "~29.7.0",
"jest-environment-node": "~29.7.0",
"jest-junit": "~16.0.0",
"lint-staged": "~15.4.3",
"nx": "20.4.0",
"prettier": "~3.4.2",
"rimraf": "~6.0.1",
"semver": "~7.7.0",
"ts-jest": "~29.2.5",
"ts-loader": "~9.5.2",
"ts-node": "~10.9.2",
"tslib": "~2.8.1",
"typescript": "~5.7.3"
}
}