This repository has been archived by the owner on Oct 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.26 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
{
"name": "ranvier-zpanel",
"version": "1.0.0",
"description": "Web-based control panel and building client for Ranvier",
"repository": {
"type": "git",
"url": "git://github.com/azigler/ranvier-zpanel.git"
},
"engines": {
"node": ">=12.18.2"
},
"author": "Andrew Zigler <andrewzigler@gmail.com> (https://www.andrewzigler.com)",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js",
"build": "cross-env NODE_ENV=production webpack --progress --config webpack.config.js",
"build:analyze": "npm run build -- --env.addon=bundleanalyze --env.addon=bundlevisualizer",
"lint:js": "eslint src/ webpack.*.js --cache --fix"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"babel-loader": "^8.3.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"caniuse-lite": "^1.0.30001103",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"css-loader": "^6.7.3",
"dotenv-webpack": "^1.8.0",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-mithril": "^0.2.0",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"node-sass": "^9.0.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^7.0.2",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^9.1.4",
"sass-loader": "^13.2.0",
"standard": "^14.3.4",
"terser-webpack-plugin": "^3.0.7",
"url-loader": "^4.1.0",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^4.2.2",
"webpack-visualizer-plugin": "^0.1.11"
},
"dependencies": {
"@babel/runtime": "^7.10.5",
"@hapi/cookie": "^11.0.1",
"@hapi/hapi": "^19.2.0",
"@hapi/inert": "^6.0.1",
"@hapi/joi": "^17.1.1",
"construct-ui": "^0.2.6",
"mergerino": "^0.4.0",
"mithril": "^2.0.4",
"regenerator-runtime": "^0.13.5"
},
"browserslist": [
"IE 10"
]
}