-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·45 lines (45 loc) · 1.38 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
{
"name": "lazy-loading-web-components-example",
"version": "1.0.0",
"description": "Lazy loading Web Components example",
"scripts": {
"dev": "cross-env npx mix",
"watch": "cross-env npx mix watch",
"prod": "npm run cleanup && cross-env npx mix --production",
"cleanup": "node cleanup.mjs",
"lint": "npx eslint src/js/**.js templates/_components/**/**.js --fix"
},
"repository": {
"type": "git",
"url": "[email protected]:delaneymethod/lazy-loading-web-components-example.git"
},
"keywords": [],
"author": "Sean Delaney",
"bugs": {
"url": "https://github.com/delaneymethod/lazy-loading-web-components-example/issues"
},
"homepage": "https://github.com/delaneymethod/lazy-loading-web-components-example",
"license": "MIT",
"dependencies": {
"autoprefixer": "^10.4.8",
"cross-env": "^7.0.3",
"cssnano": "^5.1.13",
"del": "^7.0.0",
"dotenv": "^16.0.2",
"intersection-observer": "^0.12.2",
"laravel-mix": "^6.0.49",
"postcss": "^8.4.16",
"postcss-import": "^15.0.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.54.9",
"sass-loader": "^13.0.2",
"tailwindcss": "^3.0.23",
"eslint": "^8.27.0",
"laravel-mix-criticalcss": "^1.0.2",
"lodash.debounce": "^4.0.8",
"lodash.defer": "^4.1.0",
"lodash.throttle": "^4.1.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0"
}
}