-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
97 lines (97 loc) · 2.98 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development encore dev",
"watch": "npm run development -- --watch",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "encore dev-server --hot",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production encore production",
"postinstall": "rimraf node_modules/.cache/**",
"lint": "eslint --ext .js,.vue resources/js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"resources/js/**/*.{js,jsx,ts,tsx,vue}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@fullhuman/postcss-purgecss": "^1.2.0",
"@symfony/webpack-encore": "^0.28.0",
"@tailwindcss/custom-forms": "^0.2.0",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@types/redux": "^3.6.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"animate.css": "^3.7.1",
"antd": "^3.20.5",
"axios": "^0.19.0",
"babel-eslint": "^10.0.1",
"cache-loader": "^4.0.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^5.1.1",
"eslint": "^6.0.0",
"eslint-config-standard": "^13.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"fork-ts-checker-webpack-plugin": "^1.3.7",
"friendly-errors-webpack-plugin": "^1.6.1",
"husky": "4.0.0-beta.1",
"jquery": "^3.4.1",
"js-cookie": "^2.2.0",
"laravel-echo": "^1.3.5",
"laravel-echo-server": "^1.5.5",
"lint-staged": "^9.1.0",
"lodash": "^4.17.15",
"normalize.css": "^8.0.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-url": "^8.0.0",
"prettier": "^1.17.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"redux": "^4.0.4",
"redux-saga": "^1.0.5",
"sass": "^1.20.3",
"sass-loader": "^7.1.0",
"sprintf-js": "^1.1.2",
"tailwindcss": "^1.0.3",
"thread-loader": "^2.1.2",
"ts-loader": "^6.0.4",
"typescript": "^3.5.2",
"vue": "^2.6.10",
"vue-axios": "^2.0.2",
"vue-loader": "^15.7.0",
"vue-meta": "^2.0.3",
"vue-router": "^3.0.6",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.1.1",
"vuex-router-sync": "^5.0.0",
"we-vue": "^3.0.0-alpha.16",
"webpack-bundle-analyzer": "^3.3.2",
"webpackbar": "^4.0.0"
}
}