-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
39 lines (39 loc) · 998 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
{
"name": "riot-typescript",
"version": "1.0.0",
"description": "Typescript and riot",
"repository": "riot/examples",
"main": "app/main.ts",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"start": "NODE_ENV=development webpack serve --mode development --hot",
"build": "webpack build --mode production"
},
"keywords": [
"riot",
"typescript"
],
"devDependencies": {
"@riotjs/compiler": "^9.0.6",
"@riotjs/dom-bindings": "^9.0.3",
"@riotjs/hot-reload": "9.0.1",
"@riotjs/webpack-loader": "^9.0.1",
"@types/webpack-env": "^1.18.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-riot": "^4.1.1",
"strip-indent": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"riot": "^9.1.2"
}
}