-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
38 lines (38 loc) · 985 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
{
"name": "inferno-typescript-example",
"version": "1.0.0",
"description": "A basic example of Inferno with TypeScript",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production",
"check": "tsc",
"lint": "tslint src/*.ts{,x} src/**/*.ts{,x}",
"start": "webpack-dev-server --mode=development"
},
"keywords": [
"inferno",
"typescript"
],
"author": "Dominic Gannaway",
"license": "MIT",
"dependencies": {
"inferno": "^8.2.3"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.5.4",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.1",
"ts-plugin-inferno": "^6.0.2",
"tslint": "^6.1.3",
"typescript": "^5.3.3",
"webpack": "5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "4.15.1"
}
}