forked from trustification/trustify-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.56 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
{
"name": "@trustify-ui/root",
"version": "1.0.0",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/trustification/trustify-ui.git"
},
"scripts": {
"generate": "npm run generate -ws --if-present",
"clean": "rimraf ./dist && npm run clean -ws --if-present",
"clean:all": "npm run clean:all -ws --if-present && rimraf ./dist ./node_modules",
"dist": "rimraf ./dist && copyfiles -e 'node_modules/**' entrypoint.sh '**/package.json' '*/dist/**/*' ./dist",
"check": "npm run check -ws --if-present",
"check:write": "npm run check:write -ws --if-present",
"format": "npm run format -ws --if-present",
"format:fix": "npm run format:fix -ws --if-present",
"build": "npm run build -ws --if-present",
"prepare": "npm run generate",
"start:dev:common": "npm run start:dev -w common",
"start:dev:server": "npm run start:dev -w server",
"start:dev:client": "npm run start:dev -w client",
"start:dev": "npm run build -w common && concurrently -n common,client -c 'white.bold.inverse,green.bold.inverse,blue.bold.inverse' 'npm:start:dev:common' 'npm:start:dev:client'",
"start": "npm run build -w common -w client && npm run start -w server",
"test": "npm run test -ws --if-present --",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"workspaces": [
"common",
"client",
"server"
],
"dependencies": {
"@types/express": "^4.17.21",
"http-proxy-middleware": "^2.0.6"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18",
"typescript": "~5.7.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@chromatic-com/storybook": "^3.2.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-run": "^3.1.0",
"@rollup/plugin-typescript": "^12.1.2",
"@rollup/plugin-virtual": "^3.0.2",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/test": "^8.4.7",
"@types/jest": "^29.5.4",
"@types/node": "^22.8.1",
"concurrently": "^9.1.2",
"copyfiles": "^2.4.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"msw-storybook-addon": "^2.0.4",
"rimraf": "^6.0.1",
"rollup": "^3.29.5",
"rollup-plugin-copy": "^3.5.0",
"storybook": "^8.4.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"storybook-react-rsbuild": "^0.1.10"
}
}