This repository was archived by the owner on Jan 13, 2023. It is now read-only.
generated from dataware-tools/app-template-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.89 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
{
"name": "app-user-manager",
"version": "0.0.0",
"basePath": "/user-manager/",
"engines": {
"node": "14 - 18",
"npm": "7 - 8"
},
"volta": {
"node": "18.12.1"
},
"repository": "https://github.com/dataware-tools/app-user-manager.git",
"scripts": {
"dev": "vite --open --port 3000 --host",
"build": "vite build; cp serve.json dist",
"start": "serve dist -p 3000 -s",
"test": "run-s lint test:unit test:build test:visual-regression",
"lint": "run-s lint:eslint lint:tsc",
"lint:eslint": "eslint .",
"lint:tsc": "tsc --noEmit --project tsconfig.json",
"test:unit": "jest",
"test:visual-regression": "build-storybook --quiet && loki --requireReference --reactUri file:./storybook-static",
"format": "prettier --write src/*",
"test:build": "cross-env NODE_OPTIONS=\"--max-old-space-size=4096\" run-s build",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"prepare": "husky install"
},
"dependencies": {
"@auth0/auth0-react": "1.10.2",
"@dataware-tools/api-meta-store-client": "0.5.5",
"@dataware-tools/api-permission-manager-client": "0.2.3",
"@dataware-tools/app-common": "22.8.29",
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@mui/icons-material": "5.10.2",
"@mui/lab": "5.0.0-alpha.96",
"@mui/material": "5.10.2",
"@mui/styles": "5.10.2",
"fast-deep-equal": "3.1.3",
"immer": "9.0.16",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "7.34.2",
"react-router-dom": "6.3.0",
"serve": "14.0.1",
"swr": "1.3.0"
},
"devDependencies": {
"@dataware-tools/dev-tools-for-react": "0.1.0",
"@dataware-tools/dev-tools-for-typescript": "0.1.0",
"@dataware-tools/eslint-config": "0.1.0",
"@types/react": "17.0.52",
"@types/react-dom": "18.0.8",
"@types/react-router-dom": "5.3.3"
}
}