This repository has been archived by the owner on Dec 2, 2021. It is now read-only.
forked from OpenHCS/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.3 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
{
"name": "kiebitz",
"private": true,
"version": "0.0.1",
"description": "",
"scripts": {
"prettier": "prettier --write 'src/**/*.jsx' 'src/**/*.tsx' 'src/**/*.js'",
"analyze": "APP_ENV=production webpack --config webpack.config.js --json | webpack-bundle-size-analyzer",
"lint-scss": "stylelint ./src/scss/*.scss --quiet",
"lint-scss-fix": "stylelint ./src/scss/*.scss --fix",
"lint": "eslint . --ext js,jsx,ts,tsx --quiet && stylelint src/**/*.scss",
"lint-fix": "eslint . --ext js,jsx,ts,tsx --quiet --fix; stylelint src/**/*.scss --fix",
"make-test": "APP_ENV=test webpack-dev-server --config webpack.config.js --history-api-fallback",
"make-dev": "APP_ENV=dev webpack-dev-server --config webpack.config.js --history-api-fallback",
"make": "webpack --config webpack.config.js"
},
"author": "Andreas Dewes",
"browserslist": [
"defaults"
],
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-class-static-block": "^7.14.3",
"@babel/plugin-proposal-object-rest-spread": "7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.13.0",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "7.8.3",
"@babel/preset-typescript": "7.8.3",
"@types/react": "16.9.19",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^5.2.6",
"eslint": "^8.1.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.0",
"file-loader": "5.0.2",
"json-loader": "0.5.7",
"mini-css-extract-plugin": "^2.4.3",
"node-sass": "^6.0.1",
"prettier": "1.19.1",
"process": "^0.11.10",
"react": "16.12.0",
"react-dom": "16.12.0",
"sass-loader": "^12.3.0",
"style-loader": "1.1.3",
"stylelint": "^13.13.1",
"stylelint-scss": "^3.19.0",
"typescript": "3.7.5",
"url-loader": "3.0.0",
"webpack": "^5.61.0",
"webpack-bundle-size-analyzer": "3.1.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0",
"webpack-hot-middleware": "^2.25.1",
"yaml-loader": "0.5.0"
}
}