-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.95 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.95 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@cutting/website",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/dagda1/cuttingedge.git"
},
"version": "4.30.0",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc -p ./tsconfig.json && rimraf dist && tsc -p ./tsconfig.dist.json && pnpm build:client && pnpm build:server && pnpm copy-files && ./fix-files",
"build:client": "vite build --outDir dist/client --ssrManifest",
"build:server": "vite build --ssr src/entry-server.tsx --outDir dist/server",
"clean": "rimraf dist/ && mkdir dist",
"copy-files": "copyfiles static/* dist/assets && copyfiles index.html dist && copyfiles -f dist/client/assets/* dist/assets copyfiles node_modules/@cutting/component-library/dist/esm/src.css* dist/assets",
"start": "PORT=3330 nodemon --watch server.mts --watch src/server --ext \"ts,tsx\" --exec 'tsx server.mts'",
"lint": "eslint ./**/*.{ts,tsx} --fix",
"serve": "NODE_ENV=production node dist/server.mjs",
"deploy:web": "rm -rf ./pruned && NODE_ENV=production pnpm build && pnpm --filter @cutting/website --prod deploy pruned && ./bin/deploy.sh",
"test": "echo no tests"
},
"sideEffects": [
"**/*.css",
"**/*.cs.ts"
],
"dependencies": {
"@cutting/component-library": "workspace:*",
"@cutting/hooks": "workspace:*",
"@cutting/react-hook-form-components": "workspace:*",
"@cutting/svg": "workspace:*",
"@cutting/use-get-parent-size": "workspace:*",
"@cutting/use-mathjax": "workspace:*",
"@cutting/useful-types": "workspace:*",
"@cutting/util": "workspace:*",
"@floating-ui/react": "^0.27.5",
"@vanilla-extract/css": "1.17.1",
"@vanilla-extract/sprinkles": "1.6.3",
"@visx/axis": "3.12.0",
"@visx/curve": "3.12.0",
"@visx/group": "3.12.0",
"@visx/scale": "^3.12.0",
"@visx/shape": "3.12.0",
"@visx/text": "3.12.0",
"@cutting/assert": "workspace:*",
"classnames": "2.5.1",
"cookie-parser": "1.4.7",
"compression": "1.8.0",
"core-js": "3.41.0",
"csurf": "1.11.0",
"d3-array": "3.2.4",
"d3-scale": "4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"dayjs": "1.11.13",
"express": "4.21.2",
"global": "4.4.0",
"helmet": "8.0.0",
"history": "5.3.0",
"immer": "10.1.1",
"mathjs": "14.3.0",
"nocache": "4.0.0",
"puppeteer": "^24.3.1",
"rc-slider": "^11.1.8",
"react-helmet": "6.1.0",
"react-hook-form": "7.54.2",
"react-is": "^19.0.0",
"react-router": "7.2.0",
"react-router-dom": "7.2.0",
"referrer-policy": "1.2.0",
"regression": "2.0.1",
"serve-static": "1.16.2",
"ts-pattern": "5.6.2",
"url-join": "5.0.0"
},
"devDependencies": {
"@cutting/devtools": "workspace:*",
"@cutting/tsconfig": "workspace:*",
"@floating-ui/dom": "^1.6.13",
"@mdx-js/mdx": "3.1.0",
"@mdx-js/react": "3.1.0",
"@mdx-js/rollup": "3.1.0",
"@testing-library/react": "16.2.0",
"@types/compression": "1.7.5",
"@types/csurf": "1.11.5",
"@types/d3": "7.4.3",
"@types/d3-scale": "^4.0.9",
"@types/d3-array": "3.2.1",
"@types/d3-selection": "^3.0.11",
"@types/express": "5.0.0",
"@types/node": "22.13.9",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@types/react-helmet": "6.1.11",
"@types/react-is": "^19.0.0",
"@types/react-router-dom": "5.3.3",
"@types/regression": "2.0.6",
"@types/url-join": "4.0.3",
"@vanilla-extract/vite-plugin": "5.0.1",
"copyfiles": "2.4.1",
"install": "0.13.0",
"nodemon": "3.1.9",
"react": "19.0.0",
"react-dom": "19.0.0",
"rimraf": "6.0.1",
"tsx": "^4.19.3",
"vite": "6.2.0",
"vite-plugin-commonjs": "0.10.4",
"vite-plugin-environment": "1.1.3",
"vite-plugin-ssr": "0.4.142",
"vite-plugin-svgr": "4.3.0",
"vite-tsconfig-paths": "5.1.4"
},
"peerDependencies": {
"react": "19.0.0",
"react-dom": "19.0.0"
},
"volta": {
"extends": "../../package.json"
}
}