This repository has been 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 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.5 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
{
"name": "app-data-browser",
"engines": {
"node": "16",
"engine": "8"
},
"volta": {
"node": "16.17.1"
},
"version": "0.0.0",
"basePath": "/data-browser/",
"repository": "https://github.com/dataware-tools/app-data-browser-next",
"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-file-provider-client": "1.7.3",
"@dataware-tools/api-job-store-client": "1.5.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.4",
"@emotion/styled": "11.10.4",
"@mui/icons-material": "5.10.2",
"@mui/lab": "5.0.0-alpha.96",
"@mui/material": "5.10.2",
"@mui/styles": "5.10.2",
"@mui/x-data-grid": "5.15.3",
"fast-deep-equal": "3.1.3",
"immer": "9.0.15",
"papaparse": "5.3.2",
"pigeon-maps": "0.21.0",
"react": "17.0.2",
"react-beautiful-dnd": "13.1.1",
"react-csv-downloader": "2.8.0",
"react-dom": "17.0.2",
"react-hook-form": "7.34.2",
"react-json-view": "1.21.3",
"react-markdown": "8.0.3",
"react-player": "2.10.1",
"react-router-dom": "6.3.0",
"react-syntax-highlighter": "15.5.0",
"recoil": "0.7.5",
"serve": "14.0.1",
"swr": "1.3.0",
"wavesurfer.js": "6.2.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/papaparse": "5.3.5",
"@types/react": "17.0.50",
"@types/react-beautiful-dnd": "13.1.2",
"@types/react-dom": "18.0.6",
"@types/react-router-dom": "5.3.3",
"@types/react-syntax-highlighter": "15.5.5",
"@types/wavesurfer.js": "6.0.3"
}
}