-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.53 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.53 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
{
"private": true,
"workspaces": [
"Source/**/*"
],
"engines": {
"node": ">=23.0.0"
},
"scripts": {
"g:clean": "cd $INIT_CWD && tsc -b --clean",
"g:build": "cd $INIT_CWD && tsc -b && rollup -c rollup.config.mjs",
"g:lint": "cd $INIT_CWD && eslint --cache --quiet --fix",
"g:lint:ci": "cd $INIT_CWD && eslint --cache --quiet",
"g:test": "cd $INIT_CWD && vitest run",
"g:test:watch": "cd $INIT_CWD && vitest --watch",
"g:ci": "cd $INIT_CWD && yarn clean && yarn lint:ci && tsc -b && yarn test",
"g:up": "cd $INIT_CWD && ncu -u \\!'@cratis/*'",
"clean": "node ./run-task-on-workspaces.js clean",
"build": "node ./run-task-on-workspaces.js build",
"lint": "node ./run-task-on-workspaces.js lint",
"test": "node ./run-task-on-workspaces.js test",
"ci": "node ./run-task-on-workspaces.js ci",
"publish-version": "node ./run-task-on-workspaces.js publish-version $*",
"up": "node ./run-task-on-workspaces.js up"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@tony.ganchev/eslint-plugin-header": "^3.4.4",
"@types/chai": "5.2.3",
"@types/chai-as-promised": "8.0.2",
"@types/mocha": "10.0.10",
"@types/node": "25.9.1",
"@types/sinon": "21.0.1",
"@types/sinon-chai": "4.0.0",
"@typescript-eslint/eslint-plugin": "8.60.0",
"@typescript-eslint/parser": "8.60.0",
"chai": "6.2.2",
"chai-as-promised": "8.0.2",
"edit-json-file": "1.8.1",
"eslint": "^10.4.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-react": "7.37.5",
"glob": "13.0.6",
"globals": "17.6.0",
"mocha": "11.7.6",
"module-alias": "2.3.4",
"npm-check-updates": "22.2.1",
"prettier": "3.8.3",
"rollup": "4.60.4",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-typescript2": "0.37.0",
"sinon": "22.0.0",
"sinon-chai": "4.0.1",
"ts-node": "10.9.2",
"typescript": "6.0.3",
"typescript-eslint": "8.60.0",
"vite-plugin-commonjs": "0.10.4",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.1.7"
},
"license": "MIT",
"version": "0.0.0",
"packageManager": "yarn@4.5.3"
}