-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.22 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
{
"private": true,
"name": "softpack-web",
"version": "0.1.0",
"title": "SoftPack Web",
"description": "SoftPack React Frontend",
"author": {
"name": "Kyle Mace",
"email": "km34@sanger.ac.uk",
"url": "https://github.com/KMace"
},
"homepage": "https://softpack.pages.dev",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"format": "prettier . -w",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"gen": "graphql-codegen",
"watch:gen": "graphql-codegen -w",
"buildrun": "npm run build && go build server.go && mv server ./dist && cd ./dist && ./server"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fontsource/roboto": "^5.1.0",
"@mui/icons-material": "^5.16.7",
"@mui/lab": "^5.0.0-alpha.164",
"@mui/material": "^5.16.7",
"@uidotdev/usehooks": "^2.4.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.37.0",
"humanize-duration": "^3.31.0",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.26.2",
"react-syntax-highlighter": "^15.5.0",
"react-tagcloud": "^2.3.3",
"react-window": "^1.8.10"
},
"devDependencies": {
"@graphql-codegen/client-preset": "^4.1.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/humanize-duration": "^3.27.4",
"@types/lodash": "^4.14.196",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/react-tagcloud": "^2.3.1",
"@types/react-window": "^1.8.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"eslint": "^8.41.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"prettier": "^3.1.0",
"typescript": "^5.3.3",
"vite": "^4.3.2"
}
}