-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.96 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
{
"private": true,
"scripts": {
"dev": "npm run 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": "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 --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 --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.0.0",
"@fortawesome/fontawesome-free": "^5.11.2",
"axios": "^0.19",
"babel-loader": "^8.0.6",
"bootstrap": "^4.3.1",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.0.1",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"jquery": "^3.4",
"laravel-mix": "^5.0.0",
"lodash": "^4.17.19",
"popper.js": "^1.12",
"prettier": "2.0.5",
"resolve-url-loader": "^3.1.1",
"sass": "1.26.7",
"sass-loader": "^8.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"resources/{js,sass}/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write --tab-width 2"
]
},
"dependencies": {
"@babel/core": "7.10.2",
"@babel/plugin-transform-runtime": "^7.8.3",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.10",
"animate.css": "^4.1.0",
"autocomplete-js": "^2.7.1",
"formBuilder": "^3.2.5",
"jquery-ui-sortable": "^1.0.0",
"jqueryui": "^1.11.1",
"lint-staged": "^10.1.7",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-bootstrap-typeahead": "^4.2.2",
"react-dom": "^16.12.0",
"reactstrap": "^8.1.1",
"webpack": "^4.41.2"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"prettier": {
"allowParens": "avoid",
"quoteProps": "as-needed",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"browserslist": [
"> 5% in US",
"not IE 11",
"not IE_Mob 11",
"maintained node versions"
]
}