-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.42 KB
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
{
"scripts": {
"watch": "npm run clean && NODE_ENV=development webpack --watch --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"dev": "npm run clean && NODE_ENV=development webpack-dev-server --https --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"start": "npm run clean && NODE_ENV=development webpack --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"build": "npm run clean && NODE_ENV=production webpack --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"clean": "rimraf web/dist/* web/{,**/}*{html,json}",
"fix-scripts": "eslint --fix 'src/scripts/**/*.{vue,js,jsx,mjs}'",
"test": "echo \"No test script specified\""
},
"devDependencies": {
"autoprefixer": "^10.4.4",
"copy-webpack-plugin": "^10.2.4",
"core-js": "^3.21.1",
"cross-env": "^7.0.2",
"eslint": "^8.11.0",
"eslint-plugin-vue": "^8.5.0",
"eslint-webpack-plugin": "^3.1.1",
"faker": "^4.1.0",
"globby": "^11.0.1",
"html-webpack-plugin": "^4.3.0",
"laravel-mix": "^6.0.43",
"laravel-mix-eslint": "^0.2.0",
"laravel-mix-make-file-hash": "^2.1.0",
"laravel-mix-polyfill": "^3.0.1",
"laravel-mix-purgecss": "^6.0.0",
"postcss": "^8.4.12",
"postcss-preset-env": "^7.4.3",
"prettier": "^2.6.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"raw-loader": "^4.0.1",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.23",
"twig-html-loader": "^0.1.7",
"webpack": "^5.1.0"
},
"dependencies": {
"@babel/eslint-parser": "^7.17.0",
"alpinejs": "^2.8.2",
"dotenv": "^10.0.0",
"laravel-mix-criticalcss": "github:ishetnogferre/laravel-mix-criticalcss",
"postcss-easy-import": "^4.0.0",
"tailwindcss-aspect-ratio": "^3.0.0",
"tailwindcss-scrims": "^1.0.0"
},
"eslintConfig": {
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "@babel/eslint-parser",
"sourceType": "module",
"requireConfigFile": false
}
},
"engines": {
"node": ">=16.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"Firefox ESR",
"not ie 10",
"not op_mini all",
"not op_mob 12.1",
"not baidu 7.12",
"not ie_mob 10",
"not ie_mob 11",
"not and_uc 11.8"
],
"prettier": {
"trailingComma": "es5",
"useTabs": false,
"tabWidth": 4,
"semi": false,
"singleQuote": false
},
"name": "craft-template"
}