This repository has been archived by the owner on Jan 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.87 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
{
"name": "laravel-generator-ui",
"description": "Laravel Generator UI",
"main": "index.js",
"keywords": [
"laravel",
"generator",
"ui"
],
"license": "Apache-2.0",
"repository": "git@github.com:cslant/laravel-generator-ui.git",
"authors": [
{
"name": "Tan Nguyen",
"email": "tannp27@gmail.com",
"homepage": "https://tanhongit.com"
}
],
"dependencies": {
"acorn": "^8.8.2",
"mini-css-extract-plugin": "^2.7.3",
"postcss": "^8.4.21",
"style-loader": "^3.3.1",
"svgo-loader": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"autoprefixer": "^10.4.16",
"@babel/eslint-parser": "^7.23.3",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-webpack-plugin": "^4.0.1",
"expose-loader": "^4.0.0",
"postcss-loader": "^7.3.3",
"prettier": "^3.1.1",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"stylelint": "^15.11.0",
"stylelint-prettier": "^4.1.0",
"stylelint-webpack-plugin": "^4.1.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"postcss-markdown": "^1.2.0",
"node-sass": "^9.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack -w --mode development",
"dev": "webpack --mode development --watch",
"build": "webpack --mode production"
},
"browserslist": [
"last 2 versions",
"ie >= 11"
]
}