-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
42 lines (42 loc) · 996 Bytes
/
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
{
"name": "ssr",
"version": "0.0.1",
"description": "SSR",
"repository": "riot/examples",
"main": "app/main.js",
"author": "Gianluca Guarini",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"start": "npm run build && node index",
"build": "webpack -c webpack.config.js",
"dev": "webpack -w -c webpack.config.js --mode=development"
},
"keywords": [
"riot",
"webpack"
],
"devDependencies": {
"@babel/core": "7.19.0",
"@babel/preset-env": "7.19.0",
"@riotjs/compiler": "^6.3.2",
"@riotjs/hot-reload": "6.0.1",
"@riotjs/webpack-loader": "^6.0.0",
"babel-loader": "^8.2.5",
"koa": "^2.13.4",
"koa-static": "^5.0.0",
"lodash": "^4.17.21",
"riot": "^7.0.6",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@riotjs/hydrate": "^6.0.1",
"@riotjs/register": "^6.0.1",
"@riotjs/route": "^8.0.2",
"@riotjs/ssr": "^8.1.2",
"erre": "^2.2.0"
}
}