-
Notifications
You must be signed in to change notification settings - Fork 1
/
template.json
75 lines (75 loc) · 2.61 KB
/
template.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
{
"package": {
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.9",
"@testing-library/user-event": "^12.1.4",
"@types/jest": "^26.0.10",
"@ui5/webcomponents": "1.0.0-rc.8",
"@ui5/webcomponents-fiori": "1.0.0-rc.8",
"@ui5/webcomponents-icons": "1.0.0-rc.8",
"@ui5/webcomponents-react": "^0.10.0",
"axios": "^0.20.0",
"env-cmd": "^10.1.0",
"husky": "^4.2.5",
"i18next": "^19.7.0",
"i18next-browser-languagedetector": "^6.0.1",
"jest-environment-jsdom-sixteen": "^1.0.3",
"json-server": "^0.16.1",
"msw": "^0.20.5",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"react-app-polyfill": "^1.0.6",
"react-device-detect": "^1.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-i18next": "^11.7.2",
"react-query": "^2.17.2",
"react-router-dom": "^5.2.0",
"react-query-devtools": "^2.5.0",
"react-scripts": "3.4.3",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.1",
"formik": "^2.1.7",
"yup": "^0.29.3"
},
"scripts": {
"build": "react-scripts build",
"mock": "env-cmd -f .env.development npm-run-all --parallel start:mock start:react",
"start": "env-cmd -f .env.production npm-run-all --parallel start:react",
"start:react": "react-scripts start",
"start:mock": "nodemon --watch server --exec npx json-server --p 3001 server/mockserver.js --routes server/routes.json",
"test": "react-scripts test --silent --env=jest-environment-jsdom-sixteen",
"test:ci": "npm run test -- --watchAll=false",
"test:coverage": "npm run test -- --watchAll=false --coverage",
"lint": "eslint --quiet .",
"lint:fix": "eslint . --fix",
"prettier": "./node_modules/.bin/prettier --config .prettierrc --check \"src/**/*.js\"",
"prettier:fix": "./node_modules/.bin/prettier --config .prettierrc --write \"src/**/*.js\"",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"ie 11"
]
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(@ui5|lit-html)).*\\.js$"
]
}
}
}