-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
84 lines (84 loc) · 2.76 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "inferno-website",
"version": "1.0.0",
"description": "The official website for Inferno - a JavaScript library for creating UIs on the web",
"main": "webpack.config.babel.js",
"scripts": {
"start": "cross-env NODE_ENV=production node index.js",
"dev": "cross-env NODE_ENV=development nodemon dev.js",
"debug": "cross-env NODE_ENV=development node --inspect-brk dev.js",
"prod": "cross-env NODE_ENV=production node dev.js",
"build": "cross-env NODE_ENV=production node core/compile.js && rm -fr dist && mkdir -p dist && mkdir -p dist/src && mkdir -p dist/public && mkdir -p dist/assets && mkdir -p dist/core && cp -r public/* dist/public && cp -r src/* dist/src && cp -r core/* dist/core && NODE_ENV=development BABEL_ENV=development npx babel src --out-dir dist/src",
"now-build": "npm run build",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infernojs/inferno-website.git"
},
"keywords": [
"inferno",
"website"
],
"author": "Dominic Gannaway",
"license": "MIT",
"bugs": {
"url": "https://github.com/infernojs/inferno-website/issues"
},
"homepage": "https://github.com/infernojs/inferno-website#readme",
"resolutions": {
"webpack": "^5.75.0"
},
"dependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-async-to-generator": "^7.24.7",
"@babel/preset-env": "^7.25.4",
"@babel/register": "^7.24.6",
"@koa/bodyparser": "^5.1.1",
"babel-loader": "^9.2.1",
"babel-plugin-inferno": "^6.7.2",
"bootstrap": "^5.3.3",
"clean-webpack-plugin": "^4.0.0",
"commonmark": "^0.31.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"debug": "^4.3.7",
"eslint-plugin-inferno": "^7.34.0",
"fast-async": "^6.3.8",
"file-loader": "^6.2.0",
"history": "^5.3.0",
"html-loader": "^5.1.0",
"inferno": "8.2.3",
"inferno-animation": "8.2.3",
"inferno-create-element": "8.2.3",
"inferno-hydrate": "8.2.3",
"inferno-router": "8.2.3",
"inferno-server": "8.2.3",
"json-loader": "^0.5.7",
"koa": "^2.15.3",
"koa-compress": "^5.1.1",
"koa-convert": "^2.0.0",
"koa-favicon": "^2.1.0",
"koa-mount": "^4.0.0",
"koa-router": "^12.0.1",
"koa-static": "^5.0.0",
"markdown-loader": "^8.0.0",
"mini-css-extract-plugin": "^2.9.1",
"prismjs": "^1.29.0",
"sass": "^1.78.0",
"sass-loader": "^16.0.1",
"style-loader": "^4.0.0",
"supports-color": "^9.4.0",
"webpack": "^5.94.0",
"xss-filters": "^1.2.7"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"nodemon": "^3.1.4",
"prettier": "^2.8.8",
"webpack-dev-server": "^5.1.0"
}
}