This repository was archived by the owner on Nov 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.63 KB
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": "fidesops-admin-ui",
"private": true,
"scripts": {
"chrome:debug": "BROWSER='google chrome' BROWSER_ARGS='--remote-debugging-port=9222' npm run dev",
"dev": "next dev",
"dev:mock": "echo '🚨 Running with mock API'; NEXT_PUBLIC_MOCK_API=true next dev",
"build": "next build && next export",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --fix --ext .ts,.tsx",
"format": "prettier --write src/ __tests__/",
"format:ci": "prettier --check src/ __tests__/",
"test": "jest --watch",
"test:ci": "jest",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"export": "next build && next export",
"prod-export": "npm run export && npm run copy-export"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.0",
"@chakra-ui/system": "^1.12.1",
"@chakra-ui/utils": "^2.0.9",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fidesui/react": "^0.0.12",
"@fontsource/inter": "^4.5.4",
"@monaco-editor/react": "^4.4.5",
"@reduxjs/toolkit": "^1.8.0",
"date-fns": "^2.28.0",
"date-fns-tz": "^1.3.1",
"formik": "^2.2.9",
"framer-motion": "^5",
"js-yaml": "^4.1.0",
"msw": "^0.42.0",
"narrow-minded": "^1.1.1",
"next": "12.1.0",
"next-remove-imports": "^1.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feature-flags": "^1.0.0",
"react-redux": "^7.2.6",
"redux-persist": "^6.0.0",
"whatwg-fetch": "^3.6.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.0.5",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/js-yaml": "^4.0.5",
"@types/node": "17.0.10",
"@types/react": "17.0.38",
"@types/react-redux": "^7.1.24",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-jest": "^27.5.1",
"cross-env": "^7.0.3",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-next": "12.0.8",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"typescript": "4.5.5"
},
"msw": {
"workerDirectory": "public"
}
}