-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
96 lines (96 loc) · 3.17 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
{
"name": "nxrocks",
"version": "0.0.0-development",
"license": "MIT",
"scripts": {
"nx": "nx",
"build": "nx run-many --target build --parallel 4 --exclude smoke",
"test": "nx run-many --target test --parallel 4",
"e2e": "ts-node -P ./tools/tsconfig.tools.json ./tools/scripts/run-all-e2e-tests.ts",
"lint": "nx run-many --target lint --fix --parallel 4 --exclude smoke",
"affected:build": "nx affected --target build --exclude=smoke",
"affected:e2e": "nx affected --target e2e --exclude=smoke",
"affected:test": "nx affected --target test",
"affected:lint": "nx affected --target lint --fix",
"affected:format": "nx affected --target format",
"affected:graph": "nx affected --graph",
"format": "nx format --base head~1",
"migrate": "nx migrate latest",
"run-migrate": "nx migrate --run-migrations --if-exists",
"graph": "nx graph",
"help": "nx help",
"release": "nx release --dry-run -- --skip-nx-cache",
"prepare": "husky",
"smoke": "FORCE_SMOKE_TESTS=true nx e2e smoke",
"smoke-keep": "KEEP_SMOKE_TESTS_DIR=true pnpm smoke",
"sync-preset-schemas": "ts-node -P ./tools/tsconfig.tools.json ./tools/scripts/sync-preset-schemas.ts"
},
"private": true,
"dependencies": {
"@clack/prompts": "^0.7.0",
"@swc/helpers": "0.5.11",
"create-nx-workspace": "~18.1.3",
"enquirer": "^2.4.1",
"hpagent": "^1.2.0",
"js-yaml": "^4.1.0",
"minimatch": "^9.0.3",
"node-fetch": "^2.6.12",
"semver": "^7.6.0",
"terminal-link": "^2.1.1",
"tslib": "^2.6.1",
"unzipper": "^0.10.14",
"xmlbuilder2": "^3.1.1",
"xpath": "^0.0.34",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-angular": "^19.3.0",
"@jest/globals": "29.7.0",
"@nx/devkit": "19.6.4",
"@nx/eslint-plugin": "19.6.4",
"@nx/jest": "19.6.4",
"@nx/js": "19.6.4",
"@nx/node": "19.6.4",
"@nx/plugin": "19.6.4",
"@nx/workspace": "19.6.4",
"@swc-node/register": "1.9.1",
"@swc/cli": "0.3.12",
"@swc/core": "1.5.7",
"@types/fs-extra": "^9.0.13",
"@types/jest": "29.5.12",
"@types/node": "18.16.9",
"@types/node-fetch": "^2.6.9",
"@types/semver": "^7.5.8",
"@types/tmp": "^0.2.3",
"@types/unzipper": "^0.10.5",
"@types/xmldoc": "^1.1.6",
"@types/yargs": "^17.0.26",
"@typescript-eslint/eslint-plugin": "^7.3.0",
"@typescript-eslint/parser": "^7.3.0",
"dotenv": "10.0.0",
"eslint": "~8.57.0",
"eslint-config-prettier": "^9.0.0",
"fs-extra": "^10.1.0",
"husky": "^9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "^29.4.1",
"jest-mock": "28.1.3",
"lint-staged": "^15.2.7",
"nx": "19.6.4",
"prettier": "2.6.2",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.5.4",
"verdaccio": "^5.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/tinesoft/nxrocks.git"
},
"nx": {
"includedScripts": []
},
"packageManager": "pnpm@9.4.0+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}