-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.85 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
{
"name": "styled-resume",
"version": "0.1.0",
"description": "resume builder",
"main": "index.js",
"repository": "https://github.com/ajstrand/styled-resume.git",
"author": "Alex <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "node server",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build --outDir dist/client",
"build:server": "vite build --ssr src/entry-server.jsx --outDir dist/server",
"generate": "vite build --outDir dist/static && npm run build:server && node prerender",
"serve": "cross-env NODE_ENV=production node server",
"debug": "node --inspect-brk server",
"lint": "npx oxlint@latest",
"static": "npm run build && serve dist/",
"test": "vitest"
},
"dependencies": {
"pollen-css": "^5.0.1",
"prop-types": "^15.8.1",
"preact-render-to-string": "^6.5.12"
},
"peerDependencies": {
"preact": "^10.25.4"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@emotion/babel-plugin": "^11.13.5",
"@emotion/css": "^11.13.5",
"@emotion/react": "^11.14.0",
"@emotion/styled": "11.14.0",
"@preact/preset-vite": "^2.9.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/preact": "^3.2.4",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"eslint": "^7.5.0",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-testing-library": "^5.0.4",
"express": "^4.21.2",
"husky": "^4.3.6",
"postcss": "^8.4.5",
"postcss-custom-media": "^8.0.0",
"react": "^18.3.1",
"serve-static": "^1.16.2",
"stylelint": "^14.3.0",
"stylelint-config-recommended": "^6.0.0",
"vite": "^6.0.7",
"vitest": "^2.1.8",
"oxlint": "0.15.5"
}
}