-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.65 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
{
"name": "rsc-demo",
"version": "0.1.0",
"description": "React Server Components (RSC) Demo / Playground without a framework",
"homepage": "https://timtech.blog/posts/react-server-components-rsc-no-framework/",
"repository": {
"type": "git",
"url": "git+https://github.com/ziir/rsc-demo.git"
},
"author": {
"name": "Timothée “Tim” Pillard",
"email": "[email protected]",
"url": "https://twitter.com/tpillard"
},
"license": "MIT",
"keywords": [
"react",
"server-components",
"rsc",
"demo",
"playground"
],
"main": "server/main.js",
"scripts": {
"dev": "NODE_ENV=development concurrently --kill-others-on-fail 'webpack --watch' 'nodemon --watch server --watch src --watch dist --ext js,jsx,html -- --conditions react-server server/main.js'",
"build": "NODE_ENV=production webpack",
"start": "NODE_ENV=production node --conditions react-server server/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "ssh $RSC_DEMO_DEPLOY deploy default.git"
},
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"@babel/preset-react": "^7.22.15",
"@babel/register": "^7.22.15",
"@fastify/static": "^6.12.0",
"a-route": "^1.1.1",
"fastify": "^4.24.3",
"pino-pretty": "^10.2.3",
"react-server-dom-webpack": "^18.3.0-canary-8039e6d0b-20231026",
"snarkdown": "^2.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.2",
"html-webpack-plugin": "^5.5.3",
"nodemon": "^3.0.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}