-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "mala",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/lgessler/mala"
},
"description": "",
"keywords": [],
"license": "MIT",
"dependencies": {},
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"start:dist": "http-server dist --port ${PORT:-8080}",
"build": "webpack --config webpack.prod.js",
"preview": "npm run build && npm run start:dist",
"validate": "python scripts/validate_json.py",
"publish-ghpages": "bash scripts/publish.sh",
"test": "standard"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.1",
"babel-loader": "^8.2.5",
"bulma": "^0.9.4",
"core-js": "^3.23.5",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"disqus-react": "^1.1.3",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"mui-datatables": "^4.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"webpack-server": "^0.1.2"
},
"standard": {
"env": [
"node",
"es6"
]
}
}