forked from XiNiHa/streaming-ssr-showcase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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
{
"name": "streaming-ssr-test",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"start": "node dist/server.js",
"build": "yarn build:server && yarn build:client",
"build:server": "yarn tsc-silent -p ./tsconfig.json --suppress @",
"build:client": "NODE_ENV=development yarn parcel build client-*.tsx --dist-dir dist-client --no-optimize"
},
"dependencies": {
"@atlaskit/button": "^19.1.0",
"@atlaskit/dynamic-table": "^14.18.3",
"@atlaskit/select": "^17.11.8",
"@atlaskit/table": "^0.6.9",
"@emotion/cache": "^11.13.1",
"@emotion/css": "^11.13.0",
"@emotion/react": "^11.13.0",
"@emotion/server": "^11.11.0",
"h3": "^0.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"serve-static": "^1.15.0"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/serve-static": "^1.13.10",
"esno": "^0.14.1",
"parcel": "^2.4.1",
"process": "^0.11.10",
"tsc-silent": "^1.2.2",
"typescript": "^4.6.3"
}
}