-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
127 lines (127 loc) · 4.65 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "share-and-work-ui",
"version": "0.0.2",
"description": "Shared resources rostering app",
"repository": "https://github.com/shareNwork/shareNwork-ui",
"private": true,
"port": "1337",
"scripts": {
"prebuild": "yarn run clean",
"dr:surge": "node dr-surge.js",
"build": "webpack --config webpack.prod.js && yarn run dr:surge",
"start:dev": "webpack serve --https --hot --color --progress --config webpack.dev.js",
"test": "jest",
"test:coverage": "jest --coverage",
"eslint": "eslint --ext .tsx,.js ./src/",
"lint": "yarn run eslint",
"format": "prettier --check --write ./src/**/*.{tsx,ts}",
"type-check": "tsc --noEmit",
"ci-checks": "yarn run type-check && yarn run lint && yarn run test:coverage",
"build:bundle-profile": "webpack --config webpack.prod.js --profile --json > stats.json",
"bundle-profile:analyze": "yarn run build:bundle-profile && webpack-bundle-analyzer ./stats.json",
"clean": "rimraf dist",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook",
"e2e:open": "cypress open --config-file e2e/cypress.json",
"e2e": "cypress run --config-file e2e/cypress.json",
"e2e:run:mobile": "cypress run --config-file e2e/cypress.json viewportWidth=375,viewportHeight=667",
"e2e:open:mobile": "cypress open --config-file e2e/cypress.json viewportWidth=375,viewportHeight=667",
"codegen": "graphql-codegen"
},
"devDependencies": {
"@graphql-codegen/add": "^2.0.2",
"@graphql-codegen/cli": "^1.21.8",
"@graphql-codegen/introspection": "^1.18.2",
"@graphql-codegen/typescript": "^1.23.0",
"@graphql-codegen/typescript-operations": "^1.18.4",
"@graphql-codegen/typescript-react-apollo": "^2.3.1",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-knobs": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addons": "^6.2.9",
"@storybook/react": "^6.2.9",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^26.0.23",
"@types/react-router-dom": "^5.1.7",
"@types/victory": "^33.1.4",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.0.1",
"dotenv-webpack": "^7.0.3",
"eslint": "^7.28.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"imagemin": "^8.0.0",
"jest": "^27.0.4",
"mini-css-extract-plugin": "^1.6.0",
"postcss": "^8.3.1",
"prettier": "^2.3.1",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.2",
"react-axe": "^3.5.4",
"react-docgen-typescript-loader": "^3.7.2",
"react-router-dom": "^6.2.1",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"svg-url-loader": "^7.1.1",
"terser-webpack-plugin": "^5.1.3",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"tslib": "^2.2.0",
"typescript": "^4.3.2",
"url-loader": "^4.1.1",
"webpack": "^5.38.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@apollo/client": "^3.3.21",
"@data-driven-forms/form-builder": "^0.0.11-rc4",
"@data-driven-forms/mui-component-mapper": "3.16.6",
"@data-driven-forms/react-form-renderer": "^3.11.4",
"@material-ui/core": "^4.12.4",
"@material-ui/pickers": "^3.3.10",
"@mui/icons-material": "^5.4.1",
"@mui/material": "^5.4.1",
"@mui/styled-engine-sc": "^5.4.1",
"@mui/x-data-grid": "^5.5.1",
"@mui/x-date-pickers": "^5.0.11",
"@storybook/builder-webpack5": "^6.2.9",
"@types/material-ui": "^0.21.12",
"axios": "^0.26.1",
"cypress": "^8.0.0",
"date-fns": "^2.28.0",
"dayjs": "^1.10.6",
"graphql": "^15.5.1",
"i18next": "^20.3.5",
"i18next-browser-languagedetector": "^6.1.2",
"i18next-http-backend": "^1.2.8",
"i18next-pseudo": "^2.2.1",
"interactjs": "^1.10.11",
"keycloak-js": "^14.0.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"mui-datatables": "^4.1.2",
"notistack": "^2.0.3",
"react": "^17.0.2",
"react-calendar-timeline": "^0.27.0",
"react-dom": "^17.0.2",
"react-i18next": "^11.11.4",
"react-monaco-editor": "^0.44.0",
"react-router-last-location": "^2.0.1",
"sirv-cli": "^1.0.12",
"styled-components": "^5.3.3",
"tss-react": "^3.5.2"
}
}