-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.74 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": "bare-minimum",
"version": "2.0.0",
"description": "clean/modern website to calculate your final grade (with weights)",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --mode development",
"build": "NODE_ENV=production webpack -p --config ./webpack.config.js",
"start": "node server.js",
"pretty": "prettier --write \"./src/**/*.{js,json,css}\"",
"analyze": "NODE_ENV=production ANALYZE=true webpack -p --config ./webpack.config.js"
},
"keywords": [
"grade",
"calculator",
"final",
"grade",
"school",
"education",
"gpa",
"react",
"preact",
"webpack",
"material design"
],
"author": "Chris Chuck",
"license": "MIT",
"dependencies": {
"history": "^5.0.0-beta.3",
"preact": "^10.1.1",
"preact-helmet": "^4.0.0-alpha-3"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-react-jsx": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"babel-loader": "^8.0.6",
"babel-plugin-closure-elimination": "^1.3.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"bundle-loader": "^0.5.6",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.0",
"favicons-webpack-plugin": "^1.0.2",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.9.0",
"offline-plugin": "^5.0.7",
"prettier": "^1.19.1",
"url-loader": "^3.0.0",
"webpack": "^4.41.4",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}