-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.28 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
{
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --watch --config=node_modules/laravel-mix/setup/webpack.config.js",
"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",
"build": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"format": "prettier *.js resources/**/*.js resources/**/*.vue --write"
},
"dependencies": {
"debounce": "^1.2.0",
"httpie": "^1.1.2",
"smoothscroll-polyfill": "^0.4.4",
"trix": "^1.3.0",
"vue": "^2.6.12"
},
"devDependencies": {
"@tailwindcss/typography": "^0.2.0",
"cross-env": "^7.0",
"dotenv": "^8.2.0",
"laravel-mix": "^5.0.1",
"prettier": "^2.1.2",
"resolve-url-loader": "^3.1.0",
"sass": "^1.27.0",
"sass-loader": "^10.0.3",
"tailwindcss": "^1.9.5",
"vue-template-compiler": "^2.6.12"
},
"prettier": {
"tabWidth": 2,
"singleQuote": true
}
}