-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.49 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
{
"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-css": "npm run development -- --watch --css",
"watch-js": "npm run development -- --watch --js",
"watch": "concurrently \"npm run watch-js\" \"npm run watch-css\"",
"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": "concurrently \"npm run prod-js\" \"npm run prod-css\"",
"prod-css": "npm run production -- --css",
"prod-js": "npm run production -- --js",
"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",
"clean": "node webpack.clean.js"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-react": "^7.9.4",
"axios": "^0.21.1",
"bootstrap": "^4.6.0",
"cross-env": "^5.1.6",
"fs-extra": "^9.1.0",
"laravel-mix": "^5.0.4",
"laravel-mix-merge-manifest": "^2.0.0",
"lodash": "^4.17.19",
"postcss": "^8.1.14",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"reactstrap": "^8.9.0",
"resolve-url-loader": "^3.1.0",
"sass": "^1.32.8",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.6.12"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@loadable/component": "^5.15.0",
"composer": "^4.1.0",
"concurrently": "^6.0.0",
"easy-peasy": "^5.0.3",
"i": "^0.3.6",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"react-copy-to-clipboard": "^5.0.3",
"react-countup": "^4.3.3",
"react-helmet": "^6.1.0",
"react-moment": "^1.1.1",
"react-slick": "^0.28.1",
"react-toastify": "^7.0.4",
"react-tooltip": "^4.2.17",
"slick-carousel": "^1.8.1",
"uuid": "^8.3.2"
}
}