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
|
{
"name": "web",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "gatsby develop",
"build": "gatsby build",
"start": "gatsby develop",
"lint": "tsc --noEmit && eslint src/**/*.ts*"
},
"dependencies": {
"eslint": "7.32.0",
"gatsby": "^5.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ui": "workspace:*"
},
"devDependencies": {
"@types/node": "^18.15.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"babel-eslint": "^10.1.0",
"eslint-config-custom": "workspace:*",
"gatsby-plugin-compile-es6-packages": "^2.1.1",
"gatsby-plugin-pnpm": "^1.2.10",
"tsconfig": "workspace:*",
"typescript": "^4.9.5"
}
}
|