-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
66 lines (66 loc) · 2.02 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
{
"name": "ocfstatic",
"version": "0.1.0",
"private": true,
"description": "The main OCF website",
"author": "The Open Computing Facility <[email protected]>",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint --cache .",
"format": "prettier -w .",
"typecheck": "tsc --noEmit",
"postinstall": "husky install",
"updateapi": "openapi-typescript https://api.ocf.berkeley.edu/openapi.json -o src/definitions/ocfapi.ts -c .prettierrc.json"
},
"dependencies": {
"@chakra-ui/gatsby-plugin": "^3.1.3",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.1",
"@chakra-ui/system": "^2.6.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"framer-motion": "^10.16.4",
"gatsby": "^5.12.5",
"gatsby-plugin-emotion": "^8.12.0",
"gatsby-source-filesystem": "^5.12.0",
"gatsby-transformer-remark": "^6.12.0",
"keycloak-js": "^22.0.3",
"oidc-client-ts": "^2.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-oidc-context": "^2.3.0",
"swr": "^2.2.4",
"type-fest": "^4.3.2"
},
"devDependencies": {
"@types/express": "^4.17.18",
"@types/node": "^18.11.9",
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.8",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"dotenv": "^16.3.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"http-proxy-middleware": "^2.0.6",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"openapi-typescript": "^6.7.0",
"prettier": "3.0.3",
"typescript": "5.2.2"
},
"packageManager": "[email protected]"
}