This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
59 lines (59 loc) · 1.83 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
{
"name": "mithril-starter-kit",
"version": "2.0.0",
"description": "",
"main": "index.js",
"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"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-mithril": "^0.1.1",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^7.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-loader": "^3.0.0",
"postcss-normalize": "^9.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"sass-loader": "^8.0.2",
"terser-webpack-plugin": "^3.0.0",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2",
"webpack-visualizer-plugin": "^0.1.11"
},
"dependencies": {
"@babel/runtime": "^7.9.6",
"mithril": "^2.0.4",
"regenerator-runtime": "^0.13.5"
},
"browserslist": [
"IE 10"
]
}