-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) * 4.3 KB
/
package.json
File metadata and controls
107 lines (107 loc) * 4.3 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
106
107
{
"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 --exclude=smoke",
"e2e": "ts-node -P ./tools/tsconfig.tools.json ./tools/scripts/run-all-e2e-tests.ts",
"lint": "nx run-many --target lint --parallel 4",
"lci": "nx affected -t lint test build e2e --parallel 4 --exclude=smoke",
"lci-all": "nx run-many -t lint test build e2e --parallel 4 --exclude=smoke",
"affected:build": "nx affected --target build --parallel 4",
"affected:e2e": "nx affected --target e2e --parallel 4 --exclude=smoke",
"affected:test": "nx affected --target test --parallel 4",
"affected:lint": "nx affected --target lint --fix --parallel 4",
"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",
"prepare": "husky",
"reset": "nx reset && nx sync && nx repair && rm -rf tmp/ dist/ .nx/cache/ .nx/workspace-data/ && find ./e2e -type d \\( -name \"dist\" -o -name \"tmp\" -o -name \"out-tsc\" \\) -exec rm -rf {} + && find ./packages -type d \\( -name \"dist\" -o -name \"tmp\" -o -name \"out-tsc\" -o -name \"node_modules\" \\) -exec rm -rf {} + && bun install",
"smoke": "FORCE_SMOKE_TESTS=true nx e2e smoke",
"smoke-keep": "KEEP_SMOKE_TESTS_DIR=true bun smoke",
"sync-preset-schemas": "ts-node -P ./tools/tsconfig.tools.json ./tools/scripts/sync-preset-schemas.ts",
"nuke": "rm -rf tmp/ dist/ ~/.bun/install/cache && find ./e2e -type d -name \"tmp\" -exec rm -rf {} + && nx reset && git gc",
"run-local-registry": "ts-node -P ./tools/tsconfig.tools.json ./tools/scripts/run-local-registry.ts",
"start-local-registry": "ts-node -P ./tools/tsconfig.tools.json -e \"import startLocalRegistry from './tools/scripts/start-local-registry'; (async () => { try { await startLocalRegistry();} catch (err) { console.error(err); process.exit(1); } })()\"",
"stop-local-registry": "ts-node -P ./tools/tsconfig.tools.json -e \"import stopLocalRegistry from './tools/scripts/stop-local-registry'; (async () => { try { await stopLocalRegistry();} catch (err) { console.error(err); process.exit(1); } })()\""
},
"private": true,
"dependencies": {
"@clack/prompts": "^0.10.0",
"@nx/devkit": "21.4.0",
"create-nx-workspace": "21.3.11",
"enquirer": "^2.4.1",
"hpagent": "^1.2.0",
"js-yaml": "^4.1.0",
"minimatch": "^9.0.3",
"node-fetch": "^2.6.12",
"terminal-link": "^2.1.1",
"tslib": "^2.6.1",
"unzipper": "^0.12.3",
"xmlbuilder2": "^3.1.1",
"xpath": "^0.0.34",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-angular": "^19.3.0",
"@jest/globals": "30.0.5",
"@nx/eslint": "21.4.0",
"@nx/eslint-plugin": "21.4.0",
"@nx/jest": "21.4.0",
"@nx/js": "21.4.0",
"@nx/node": "21.4.0",
"@nx/plugin": "21.4.0",
"@nx/workspace": "21.4.0",
"@swc-node/register": "1.9.1",
"@swc/cli": "0.3.12",
"@swc/helpers": "0.5.11",
"@swc/core": "1.5.7",
"@swc/jest": "0.2.39",
"@types/fs-extra": "^9.0.13",
"@types/jest": "30.0.0",
"@types/node": "18.16.9",
"@types/node-fetch": "^2.6.9",
"@types/semver": "^7.5.8",
"@types/unzipper": "^0.10.5",
"@types/xmldoc": "^1.1.6",
"@types/yargs": "^17.0.26",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.0.0",
"fs-extra": "^10.1.0",
"husky": "^9.1.7",
"jest": "30.0.5",
"jest-environment-jsdom": "30.0.5",
"jest-environment-node": "^29.7.0",
"jsonc-eslint-parser": "^2.1.0",
"jest-mock": "29.7.0",
"lint-staged": "^16.0.0",
"nx": "21.4.0",
"prettier": "2.6.2",
"ts-jest": "29.4.0",
"ts-node": "10.9.1",
"typescript": "5.8.3",
"typescript-eslint": "^8.19.0",
"verdaccio": "6.1.2",
"jest-util": "30.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/tinesoft/nxrocks.git"
},
"nx": {
"includedScripts": []
},
"workspaces": [
"packages/**",
"e2e/**"
]
}