This repository has been archived by the owner on Dec 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.09 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
{
"name": "nhie-web",
"version": "0.0.1",
"description": "The nhie.io web client.",
"main": "src/index.js",
"scripts": {
"build": "npm run webpack:build",
"dev": "npm run webpack:watch",
"webpack:start": "webpack-dev-server --config webpack.conf.js",
"webpack:watch": "webpack --config webpack.conf.js -w",
"webpack:build": "NODE_ENV=production webpack --config webpack.prod.js",
"lint:js": "eslint ./src --ext .js",
"lint:scss": "stylelint ./src/**/*.scss",
"pretest": "npm-run-all lint:*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jonas Knobloch",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"autoprefixer": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^4.3.0",
"eslint": "^7.16.0",
"eslint-config-google": "^0.14.0",
"eslint-webpack-plugin": "^2.4.1",
"handlebars-loader": "^1.7.1",
"handlebars-webpack-plugin": "^2.2.1",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^0.11.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.10",
"postcss-loader": "^4.1.0",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"stylelint": "^13.8.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0",
"stylelint-webpack-plugin": "^2.1.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@material/button": "^8.0.0",
"@material/dialog": "^8.0.0",
"@material/form-field": "^8.0.0",
"@material/icon-button": "^8.0.0",
"@material/layout-grid": "^8.0.0",
"@material/linear-progress": "^8.0.0",
"@material/list": "^8.0.0",
"@material/radio": "^8.0.0",
"@material/ripple": "^8.0.0",
"@material/theme": "^8.0.0",
"@material/top-app-bar": "^8.0.0",
"@material/typography": "^8.0.0",
"axios": "^0.21.1",
"core-js": "^3.8.1",
"uuid": "^8.3.2"
}
}