-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.74 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.74 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
{
"private": true,
"scripts": {
"format": "prettier --write \"resources/**/*.(css|js|svelte)\"",
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --disable-host-check --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.1",
"autoprefixer": "^10.2.1",
"cross-env": "^7.0.3",
"laravel-mix": "^5.0.9",
"laravel-mix-svelte": "^0.1.6",
"postcss": "^8.2.4",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.1.0",
"resolve-url-loader": "^3.1.0",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0",
"svelte": "^3.31.2",
"svelte-loader": "^2.13.6",
"tailwindcss": "^2.0.2",
"vue-template-compiler": "^2.6.12"
},
"dependencies": {
"@inertiajs/inertia": "^0.8.2",
"@inertiajs/inertia-svelte": "^0.5.2",
"@inertiajs/progress": "^0.2.4",
"classnames": "^2.2.6",
"svelte-class-transition": "^1.0.4"
}
}