-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
90 lines (90 loc) · 3.08 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
{
"name": "contaxy-webapp",
"version": "0.1.0",
"private": true,
"homepage": "./",
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.57",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@uppy/core": "^1.16.2",
"@uppy/dashboard": "^1.17.1",
"@uppy/react": "^1.11.5",
"@uppy/xhr-upload": "^1.7.1",
"byte-size": "^8.1.0",
"i18next": "^19.8.3",
"i18next-browser-languagedetector": "^6.0.1",
"i18next-http-backend": "^1.0.21",
"jdenticon": "^3.1.0",
"jest-canvas-mock": "^2.3.0",
"material-table": "1.57.2",
"moment": "^2.29.2",
"prop-types": "^15.7.2",
"querystring": "npm:querystring-es3@^0.2.1",
"react": "^17.0.1",
"react-cookie": "^4.0.3",
"react-dom": "^17.0.1",
"react-i18next": "^11.8.4",
"react-iframe": "^1.8.0",
"react-json-view": "^1.21.3",
"react-router-dom": "^6.2.2",
"styled-components": "^5.2.1",
"superagent": "^6.1.0",
"unstated-next": "^1.1.0",
"web-vitals": "^0.2.4"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"babel-eslint": "^10.1.0",
"eslint": "^7.15.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"prettier": "^2.2.1",
"react-is": "^17.0.1",
"react-scripts": "5.0.1",
"stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0"
},
"scripts": {
"start": "GENERATE_SOURCEMAP=false react-scripts start",
"start-debug": "GENERATE_SOURCEMAP=false REACT_APP_ENDPOINT=http://localhost:30010/api yarn start",
"container": "run(){ docker build -t project-template-dev ../.github/actions/build-environment && echo 'Starting the container. That can take a moment...' && docker run -it --rm -p 3000:3000 -p 6006:6006 -v $(pwd):/workspace:delegated --entrypoint \"/bin/bash\" project-template-dev -c \"cd workspace/ && yarn $1\"; }; run",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"test": "react-scripts test a --watchAll=false",
"test-interactive": "react-scripts test",
"eject": "react-scripts eject",
"lint": "yarn run lint:js ; yarn run lint:css",
"lint:js": "eslint --ext js,jsx src/",
"lint:css": "stylelint 'src/**/*.css'",
"prettier": "prettier --config .prettierrc --write",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"browser": {
"fs": false
}
}