-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.4 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.4 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
{
"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 && yarn copy-css",
"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 && yarn build && yarn test",
"g:up": "cd $INIT_CWD && ncu -u",
"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"
},
"license": "MIT",
"version": "0.0.0",
"packageManager": "yarn@4.5.3",
"devDependencies": {
"@cratis/arc": "^20.18.1",
"@cratis/arc.react": "^20.18.1",
"@cratis/arc.vite": "^20.18.1",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@storybook/addon-storysource": "8.6.14",
"@storybook/react": "^10.3.6",
"@storybook/react-vite": "^10.3.6",
"@tailwindcss/postcss": "^4.3.0",
"@tailwindcss/vite": "^4.3.0",
"@tony.ganchev/eslint-plugin-header": "^3.4.4",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/leaflet": "^1.9.21",
"@types/mocha": "^10.0.10",
"@types/node": "^25.6.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/sinon": "^21.0.1",
"@types/sinon-chai": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.5",
"autoprefixer": "^10.5.0",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"edit-json-file": "^1.8.1",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"glob": "^13.0.6",
"globals": "^17.6.0",
"mocha": "^11.7.5",
"module-alias": "^2.3.4",
"npm-check-updates": "^22.1.1",
"postcss": "^8.5.14",
"prettier": "^3.8.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"reflect-metadata": "0.2.2",
"rollup": "^4.60.3",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"sinon": "^22.0.0",
"sinon-chai": "^4.0.1",
"storybook": "^10.3.6",
"tailwindcss": "^4.3.0",
"ts-node": "^10.9.2",
"tsyringe": "4.10.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.12",
"vite-plugin-commonjs": "^0.10.4",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.5"
}
}