-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.22 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.22 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
50
51
52
53
54
55
56
57
{
"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",
"test": "cross-env NODE_ENV=test jest",
"tdd": "npm run test -- --watch --notify",
"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-transform-runtime": "^7.10.1",
"@babel/preset-react": "^7.10.1",
"@material-ui/core": "^4.10.1",
"@material-ui/icons": "^4.9.1",
"@testing-library/dom": "^7.9.0",
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^10.2.0",
"axios": "^0.19",
"babel-jest": "^26.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"bootstrap": "^4.0.0",
"cross-env": "^7.0",
"formik": "^2.1.4",
"jest": "^26.0.1",
"jquery": "^3.2",
"laravel-mix": "^5.0.1",
"lodash": "^4.17.13",
"popper.js": "^1.12",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-global-configuration": "^1.4.0",
"react-test-renderer": "^16.13.1",
"regenerator-runtime": "^0.13.5",
"resolve-url-loader": "^3.1.0",
"sass": "^1.26.7",
"sass-loader": "^8.0.0",
"yup": "^0.29.1"
},
"jest": {
"roots": [
"<rootDir>/resources/js/"
]
},
"dependencies": {
"@babel/polyfill": "^7.10.1",
"@babel/runtime": "^7.10.2",
"i18next": "^19.4.5",
"i18next-browser-languagedetector": "^4.2.0",
"i18next-http-backend": "^1.0.15",
"react-i18next": "^11.5.0",
"react-router-dom": "^5.2.0"
}
}