-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
143 lines (143 loc) · 5.57 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "aspen-ts-frontend",
"version": "0.1.0",
"private": true,
"proxy": "http://frontend.genepinet.localdev:8000",
"scripts": {
"serve": "npm run build && npm run start",
"start": "next start",
"build": "node --max_old_space_size=8192 node_modules/.bin/next build",
"dev": "node --max_old_space_size=8192 node_modules/.bin/next dev",
"local-dev": "API_URL=http://backend.genepinet.localdev:3000 npm run dev -- -p 8000",
"jest": "jest --config jest/config.js",
"e2e": "mkdir -p /tmp/screenshots; DEBUG=pw:api NODE_ENV=development npx playwright test --output /tmp/screenshots -c ./e2e/setup/local.config.ts",
"e2e-staging": "mkdir -p /tmp/screenshots; DEBUG=pw:api npx playwright test --output /tmp/screenshots -c ./e2e/setup/staging.config.ts",
"e2e-staging-from-local": "AWS_PROFILE=genepi-dev FRONTEND_URL=https://staging.genepi.czi.technology DEPLOYMENT_STAGE=staging make e2e",
"type-check": "tsc --noEmit",
"lint": "concurrently \"node_modules/.bin/eslint **/*.{ts,tsx} --quiet --fix\" \"node_modules/.bin/stylelint --fix '**/*.{js,ts,tsx,css}'\" \"npm run type-check\"",
"lint-ci": "concurrently \"node_modules/.bin/eslint **/*.{ts,tsx}\" \"node_modules/.bin/stylelint '**/*.{js,ts,tsx,css}'\" \"npm run type-check\"",
"lint-e2e": "concurrently \"node_modules/.bin/eslint --fix e2e/**/*.ts\" \"node_modules/.bin/stylelint --fix 'e2e/**/*.ts'\" \"npm run type-check\"",
"pl:staging": "DEBUG=pw:api NODE_ENV=staging npx playwright test --headed -c ./e2e/setup/staging.config.ts",
"pl:local": "NODE_ENV=development npx playwright test --headed -c ./e2e/setup/local.config.ts",
"pl:staging:headless": "NODE_ENV=staging npx playwright test --headless -c ./e2e/setup/staging.config.ts",
"pl:staging:debug": "NODE_ENV=staging npx playwright test --debug -c ./e2e/setup/staging.config.ts",
"pl:report": "npx playwright show-report"
},
"dependencies": {
"@babel/eslint-parser": "^7.24.5",
"@emotion/cache": "^11.10.1",
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.10.0",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.93",
"@mui/material": "^5.10.2",
"@splitsoftware/splitio": "^10.17.2",
"@splitsoftware/splitio-react": "^1.3.0",
"@tanstack/react-query": "^4.1.0",
"@tanstack/react-table": "^8.5.15",
"@types/lodash": "^4.14.168",
"@types/node": "^12.19.12",
"@types/react": "^17.0.0",
"@types/react-dom": "^18.0.6",
"@types/react-table": "^7.7.12",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-eslint": "^10.1.0",
"czifui": "^10.8.0",
"deep-equal": "^2.0.5",
"deepmerge": "^4.2.2",
"dotenv": "^16.0.1",
"eslint": "^7.11.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.9.2",
"eslint-webpack-plugin": "^2.1.0",
"fastest-levenshtein": "^1.0.12",
"fflate": "^0.7.0",
"formik": "^2.2.9",
"lodash": "^4.17.21",
"next": "^12.3.1-canary.5",
"next-secure-headers": "^2.2.0",
"papaparse": "^5.3.1",
"react": "^17.0.2",
"react-csv": "^2.1.7",
"react-dom": "^17.0.2",
"react-redux": "^8.0.2",
"react-virtual": "^2.10.4",
"react-virtualized-auto-sizer": "^1.0.5",
"react-window": "^1.8.6",
"redux": "^4.2.0",
"style-loader": "1.3.0",
"typescript": "^4.1.3",
"url-loader": "4.1.1",
"uuid": "^9.0.0",
"webpack": "^5.76.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@emotion/babel-plugin": "^11.3.0",
"@mui/types": "^7.1.5",
"@playwright/test": "^1.24.2",
"@svgr/webpack": "^6.5.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^11.2.2",
"@testing-library/react-hooks": "^7.0.0",
"@testing-library/user-event": "^12.6.0",
"@types/deep-equal": "^1.0.1",
"@types/jest": "^26.0.24",
"@types/papaparse": "^5.2.5",
"@types/react-csv": "^1.1.1",
"@types/react-virtualized-auto-sizer": "^1.0.0",
"@types/react-window": "^1.8.2",
"@types/uuid": "^8.3.4",
"babel-plugin-jsx-remove-data-test-id": "^3.0.0",
"babel-plugin-transform-imports": "^2.0.0",
"concurrently": "^6.5.1",
"dotenv-cli": "^6.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-sonarjs": "^0.6.0",
"expect-playwright": "^0.3.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.3",
"jest-circus": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-resolve": "^28.1.3",
"jest-watch-typeahead": "^2.0.0",
"msw": "^0.39.2",
"playwright": "^1.24.2",
"prettier": "^2.3.0",
"prettier-plugin-organize-imports": "^2.0.0",
"react-slick": "^0.28.1",
"react-test-renderer": "^17.0.2",
"redux-devtools-extension": "^2.13.9",
"slick-carousel": "^1.8.1",
"stylelint": "^13.12.0",
"stylelint-config-recommended": "^4.0.0",
"stylelint-config-standard": "^21.0.0",
"ts-jest": "^28.0.8",
"whatwg-fetch": "^3.6.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}