-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.44 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
{
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "npx rimraf deploy && npx nx run-many -t clean",
"clean:install": "npm run clean && npx rimraf node_modules .nx package-lock.json && npm i",
"test": "npx nx run-many -t test",
"test:coverage": "npx nx run-many -t test:coverage",
"test:browser": "npx nx run-many -t test:browser",
"lint": "npx nx run-many -t lint",
"build": "npx nx run-many -t build",
"pack": "npx nx run-many -t pack",
"size-limit:verify": "npx nx run-many -t size-limit:verify",
"size-limit:json": "npx nx run-many -t size-limit:json",
"size-limit:output-json": "node cli/prepare-size-limit.js",
"prepare": "husky",
"prepare-pre-release": "npx nx release --specifier prerelease --skip-publish",
"prepare-release": "npx nx release --skip-publish",
"prepare-deploy": "npm run clean && npm run build && node cli/prepare-deploy.js",
"release:publish": "npx nx release publish",
"serve": "npx http-server -p 3333 ./deploy",
"preserve": "npm run prepare-deploy"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@nx/js": "20.3.1",
"@size-limit/preset-big-lib": "^11.1.6",
"@types/eslint__js": "^8.42.3",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@typestrong/ts-mockito": "^2.7.12",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/browser": "^2.1.8",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^15.14.0",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.3.0",
"npm-run-all": "^4.1.5",
"nx": "20.3.1",
"playwright": "^1.49.1",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"size-limit": "^11.1.6",
"typedoc": "^0.27.6",
"typescript": "~5.7.3",
"typescript-eslint": "^8.19.1",
"vite": "^6.0.7",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-dts": "^4.4.0",
"vite-plugin-static-copy": "^2.2.0",
"vitest": "^2.1.8"
}
}