-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 932 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 932 Bytes
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
{
"name": "ssr",
"version": "0.0.1",
"description": "SSR",
"repository": "riot/examples",
"main": "app/main.js",
"author": "Gianluca Guarini",
"type": "module",
"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": {
"@riotjs/compiler": "^10.0.1",
"@riotjs/hot-reload": "10.0.0",
"@riotjs/webpack-loader": "^10.0.0",
"koa": "^3.0.1",
"koa-static": "^5.0.0",
"lodash-es": "^4.17.21",
"riot": "^10.0.1",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@riotjs/hydrate": "^10.0.0",
"@riotjs/register": "^10.0.0",
"@riotjs/route": "^10.0.0",
"@riotjs/ssr": "^10.0.0",
"erre": "^3.0.1"
}
}