-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.04 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.04 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
{
"name": "@pulp-ui/root",
"version": "1.0.0",
"license": "Apache-2.0",
"private": true,
"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",
"lint": "npm run lint -ws --if-present",
"lint:fix": "npm run lint:fix -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 -w common -w client -w server --if-present --"
},
"workspaces": [
"common",
"client",
"server"
],
"dependencies": {
"@types/express": "^5.0.3",
"http-proxy-middleware": "^3.0.5"
},
"peerDependencies": {
"react": "^19.1.1",
"react-dom": "19.1.1",
"typescript": "~5.7.3"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-run": "^3.1.0",
"@rollup/plugin-typescript": "^12.3.0",
"@rollup/plugin-virtual": "^3.0.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"concurrently": "^9.2.1",
"copyfiles": "^2.4.1",
"cross-env": "^10.0.0",
"rimraf": "^6.0.1",
"rollup": "^4.54.0",
"rollup-plugin-copy": "^3.5.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
}
}