-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
49 lines (49 loc) · 1.37 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
{
"name": "inferno-boilerplate",
"version": "0.0.1",
"description": "A basic boilerplate to get you started with Inferno + Inferno Router + JSX",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --config webpack.conf.js --host 0.0.0.0",
"build": "webpack --mode=production --config webpack.conf.js",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trueadm/inferno-boilerplate.git"
},
"keywords": [
"inferno",
"boilerplate",
"cerebral",
"jsx"
],
"author": "Dominic Gannaway",
"license": "MIT",
"bugs": {
"url": "https://github.com/trueadm/inferno-boilerplate/issues"
},
"homepage": "https://github.com/trueadm/inferno-boilerplate#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-syntax-jsx": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.2.1",
"babel-plugin-inferno": "^6.7.2",
"eslint": "^8.57.1",
"eslint-plugin-inferno": "^7.34.0",
"glob": "^11.0.0",
"inferno-devtools": "^7",
"url": "^0.11.4",
"webpack": "5.96.1",
"webpack-dev-server": "5.1.0"
},
"dependencies": {
"history": "^5.3.0",
"inferno": "^9.0.0-alpha.1",
"inferno-create-element": "^9.0.0-alpha.1",
"inferno-router": "^9.0.0-alpha.1",
"webpack-cli": "^5.1.4"
}
}