-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.06 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 2.06 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
{
"private": true,
"scripts": {
"test:backend:lint": "eslint --ext .js,.jsx resources/js/backend",
"test:backend": "yarn test:backend:lint",
"test": "yarn test:backend",
"format": "prettier --write \"resources/**/*.{js,jsx,css}\"",
"dev": "yarn development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "yarn development -- --watch",
"watch-poll": "yarn watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "yarn production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"cross-env": "^7.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"laravel-mix": "^5.0.1",
"prettier": "^1.19.1",
"resolve-url-loader": "^3.1.0",
"stylelint": "^13.5.0",
"stylelint-config-standard": "^20.0.0",
"tailwindcss": "^1.4.0",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"@inertiajs/inertia": "^0.1.7",
"@inertiajs/inertia-react": "^0.1.4",
"@tailwindcss/ui": "^0.1.3",
"alpinejs": "^2.1.0",
"classnames": "^2.2.6",
"is-hotkey": "^0.1.6",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-dropzone": "^11.0.1",
"slate": "^0.58.0",
"slate-history": "^0.58.1",
"slate-react": "^0.58.0"
}
}