-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 2.44 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
67
{
"name": "kiebitz",
"private": true,
"version": "0.0.1",
"description": "",
"scripts": {
"prettier": "prettier --write 'src/**/*.jsx' 'src/**/*.tsx' 'src/**/*.js' 'src/**/*.ts'",
"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",
"build-test": "APP_ENV=test webpack-dev-server --config webpack.config.js --history-api-fallback",
"build-dev": "APP_ENV=dev webpack-dev-server --config webpack.config.js --history-api-fallback",
"build": "webpack --config webpack.config.js"
},
"author": "Andreas Dewes",
"browserslist": [
"defaults"
],
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-class-static-block": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/plugin-transform-async-to-generator": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/react": "^17",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-loader": "^8.0.6",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^10.0.0",
"css-loader": "^6.5.1",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.18.0",
"file-loader": "^6.2.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^2.4.3",
"prettier": "^2.5.0",
"process": "^0.11.10",
"react": "^17",
"react-dom": "^17",
"sass": "^1.44.0",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"stylelint": "^14.1.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-scss": "^4.0.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"url-loader": "^4.1.1",
"vanellus": "file:../vanellus",
"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.6.0"
}
}