-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.35 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
{
"name": "@tecsinapse/react-boilerplate",
"description": "TecSinapse boilerplate for react projects",
"version": "5.1.0",
"main": "build/index.js",
"module": "build/index.js",
"dependencies": {
"@apollo/client": "^3",
"@sentry/browser": "^8",
"apollo3-cache-persist": "^0.15.0",
"axios": "^1.7.7",
"graphql": "^16",
"history": "^5.3.0",
"keycloak-js": "^25",
"localforage": "^1",
"react-confirm": "~0.1",
"react-ga4": "^2",
"react-redux": "^6",
"react-router-dom": "^6.26.2",
"recompose": "^0.30.0",
"redux": "^4"
},
"devDependencies": {
"@babel/cli": "~7.10",
"@babel/core": "~7.11",
"@babel/plugin-syntax-dynamic-import": "~7.8",
"@babel/preset-env": "~7.11",
"@babel/preset-react": "~7.10",
"@lingui/core": "^4",
"@lingui/macro": "^4",
"@lingui/react": "^4",
"@material-ui/core": "*",
"@material-ui/icons": "*",
"@tecsinapse/eslint-config-tecsinapse-js": "^3.0.2",
"@tecsinapse/ui-kit": "5.7.12",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-macros": "^3.1.0",
"documentation": "^12.1.2",
"eslint-plugin-jsdoc": "^15.12.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prop-types": "^15.6.2",
"react": "^16",
"react-dom": "^16",
"react-router": "^6",
"regenerator-runtime": "^0.14",
"rimraf": "latest"
},
"files": [
"build"
],
"scripts": {
"build": "rimraf -rf build/ && babel src/ -d build/ --copy-files",
"build:docs:html": "documentation --github --config documentation.yml --babel=./babel.config.js build src/* -f html -o docs",
"build:docs:md": "documentation --github --config documentation.yml --babel=./babel.config.js build src/* -f md > md-docs/README.md",
"publish:beta": "npm publish --tag beta",
"start:docs:html": "documentation --github --config documentation.yml --babel=./babel.config.js serve --watch src/*",
"prepare": "husky"
},
"peerDependencies": {
"@lingui/core": "^4",
"@lingui/react": "^4",
"@material-ui/core": "^4.11.1",
"@material-ui/icons": "^4.11.1",
"@tecsinapse/ui-kit": "^5.7.0",
"react": ">=16.13.0 <= 17",
"react-dom": ">=16.13.0 <= 17",
"react-router": "^6"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"sideEffects": false
}