This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.63 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
{
"name": "@inrupt/client-identifier-helper",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "npm run lint:check",
"lint:fix": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write",
"lint:check": "npm run lint:eslint && npm run lint:prettier -- --check",
"lint:eslint": "eslint --config .eslintrc.cjs \"src/\"",
"lint:prettier": "prettier \"{src,e2e}/**/*.{ts,tsx,js,jsx,css}\" \"**/*.{md,mdx,yml}\"",
"test": "jest",
"test:e2e": "playwright test"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.14.0",
"@mui/lab": "^5.0.0-alpha.108",
"@mui/material": "^5.10.14",
"@vercel/node": "^2.6.3",
"formik": "^2.2.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.3"
},
"devDependencies": {
"@inrupt/eslint-config-lib": "^1.7.0",
"@inrupt/eslint-config-react": "^2.1.0",
"@jest/globals": "^29.5.0",
"@rushstack/eslint-patch": "^1.2.0",
"@playwright/test": "^1.27.1",
"@types/jest": "^28.1.6",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.2.6",
"@vitejs/plugin-react": "^2.2.0",
"eslint-import-resolver-typescript": "^3.5.2",
"fetch-mock": "^9.11.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.2.2",
"ts-jest": "^28.0.7",
"typescript": "^4.8.4",
"undici": "^5.22.0",
"vercel": "^30.2.3",
"vite": "^3.2.7"
},
"overrides": {
"[email protected]": {
"got": "12.3.1"
}
}
}