-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.9 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "webpack-react",
"sideEffects": false,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"bootstrap": "yarn install",
"dev": "vite --config build/vite.config.dev.js --mode dev",
"dev:webpack": "cross-env NODE_ENV=development APP_ENV=dev webpack serve --progress --mode=development --config build/webpack.config.js ",
"build": "cross-env NODE_ENV=production webpack --config build/webpack.config.js",
"build:dev": "cross-env APP_ENV=dev npm run build",
"build:prod": "cross-env APP_ENV=prod npm run build --report",
"clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite",
"lint:eslint": "eslint \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
"lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
"lint:stylelint": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"lint:pretty": "pretty-quick --staged",
"reinstall": "rimraf yarn.lock && rimraf package.lock.json && rimraf node_modules && npm run bootstrap",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@baleada/tailwind-theme-utils": "^0.6.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/lodash": "^4.14.170",
"@types/node": "^16.9.1",
"@types/qs": "^6.9.6",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.6",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"core-js": "^3.13.1",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"dotenv": "^10.0.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^6.2.10",
"fs-extra": "^10.0.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^7.0.2",
"less": "^4.1.1",
"less-loader": "^10.0.1",
"lint-staged": "^11.0.0",
"mini-css-extract-plugin": "^2.3.0",
"moment-locales-webpack-plugin": "^1.2.0",
"postcss": "^8.3.0",
"postcss-100vh-fix": "^1.0.2",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.1.1",
"prettier": "^2.3.0",
"prettier-stylelint": "^0.4.2",
"pretty-quick": "^3.1.1",
"progress-bar-webpack-plugin": "^2.1.0",
"purgecss-webpack-plugin": "^4.0.3",
"react-dev-utils": "^11.0.4",
"style-loader": "^3.2.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.2.0",
"terser-webpack-plugin": "^5.1.3",
"thread-loader": "^3.0.4",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.3.2",
"vite": "^2.5.7",
"webpack": "^5.38.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.2.1",
"webpack-hot-middleware": "^2.25.1",
"workbox-webpack-plugin": "^6.1.5"
},
"dependencies": {
"axios": "^0.21.1",
"history": "^5.0.0",
"lodash-es": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "6.0.0-beta.0",
"tailwindcss": "^2.1.4"
}
}