-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
128 lines (128 loc) · 4.04 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "genomepage",
"version": "0.0.0-semantically-released",
"private": true,
"homepage": "/gene",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"test-coverage": "jest --coverage",
"start-production": "next start",
"start:mock": "NEXT_PUBLIC_MOCK_SERVER=on next dev",
"cypress:open": "cypress open",
"cypress:run": "percy exec -- cypress run",
"cypress:ci": "NEXT_PUBLIC_MOCK_SERVER=on start-server-and-test dev http://localhost:3000 cypress:run",
"lint": "next lint",
"tsc": "tsc",
"styleguide": "FAST_REFRESH=false styleguidist server",
"styleguide:build": "FAST_REFRESH=false styleguidist build",
"semantic-release": "semantic-release",
"postinstall": "husky install"
},
"dependencies": {
"@apollo/client": "^3.7.10",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.11.0",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@isomorphic-git/lightning-fs": "^4.6.0",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@mui/icons-material": "^5.16.11",
"@mui/material": "^5.16.5",
"apollo3-cache-persist": "^0.14.1",
"dicty-components-header-footer": "dictybase/dicty-components-header-footer#11.0.1",
"dicty-components-login": "dictybase/dicty-components-login#4.1.1",
"dicty-components-navbar": "github:dictyBase/dicty-components-navbar#2.0.0",
"dicty-graphql-schema": "dictyBase/dicty-graphql-schema",
"dicty-hooks": "dictybase/dicty-hooks#3.0.0",
"element-remove": "^1.0.4",
"eslint-config-next": "^14.2.8",
"font-awesome": "^4.7.0",
"fontsource-roboto": "^4.0.0",
"fp-ts": "^2.16.6",
"fp-ts-std": "^0.15.1",
"graphql": "^16.8.1",
"isomorphic-git": "^1.27.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-jsdom-global": "^4.0.0",
"jwt-decode": "^3.1.2",
"localforage": "^1.10.0",
"monocle-ts": "^2.3.13",
"newtype-ts": "^0.3.5",
"next": "^12.2.1",
"react": "17.0.0",
"react-dom": "17.0.0",
"react-fontawesome": "^1.7.1",
"react-ga": "^3.3.0",
"react-markdown": "^8.0.7",
"rxjs": "7.8",
"string.prototype.includes": "^2.0.0",
"typescript": "^5.4.3",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@material-ui/styles": "^4.11.5",
"@percy/cli": "^1.30.2",
"@percy/cypress": "3.1.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.1.0",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/jwt-decode": "^3.1.0",
"@types/node": "^22.10.1",
"@types/react": "^18.0.9",
"@types/react-fontawesome": "^1.6.8",
"cypress": "^13.15.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.0.2",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "8",
"lint-staged": "^13.1.2",
"msw": "^1.3.2",
"prettier": "^3.2.5",
"react-docgen-typescript": "^2.2.1",
"react-styleguidist": "^13.1.2",
"react-test-renderer": "^19.0.0",
"semantic-release": "^19.0.5",
"start-server-and-test": "^2.0.3"
},
"lint-staged": {
"*.{js,jsx,json,css}": [
"prettier --no-semi --trailing-comma all --jsx-bracket-same-line true --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"msw": {
"workerDirectory": "public"
}
}