-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.12 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.12 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
{
"scripts": {
"test": "npm run prettier-check && npm run eslint-check && npm run stylelint-check",
"prettier-check": "prettier --check .",
"eslint-check": "eslint assets",
"stylelint-check": "stylelint assets/**/*.{scss,css}",
"dev": "mix",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "mix --production",
"production": "mix --production",
"build:eleventy": "eleventy",
"start": "eleventy --serve --quiet"
},
"devDependencies": {
"@up-line/eslint-config": "^1.0.0",
"@up-line/stylelint-config": "^1.0.0",
"prettier": "^2.4.1",
"laravel-mix": "^6.0.18",
"laravel-mix-svg-sprite": "^2.0.0",
"postcss": "^8.2.13",
"resolve-url-loader": "^5.0.0",
"sass": "^1.32.12",
"sass-loader": "^13.0.2",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"@11ty/eleventy": "^1.0.1"
},
"dependencies": {
"mmenu-js": "^9.3.0"
},
"private": true
}