-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "vertex-nextjs-starter",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/cache": "^11.10.8",
"@emotion/react": "^11.11.4",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.16.5",
"@mui/material": "^5.16.5",
"@vertexvis/api-client-node": "^0.23.1",
"@vertexvis/viewer-react": "^0.22.0",
"next": "^14.2.15",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-hotkeys-hook": "^3.4.7"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@types/node": "^17.0.41",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"babel-plugin-import": "^1.13.5",
"eslint": "^8.17.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^7.0",
"prettier": "^2.6.2",
"tslib": "^2.4.0",
"typescript": "^4.7.3"
},
"scripts": {
"build": "next build",
"clean": "rm -rf .next/ node_modules/",
"dev": "next",
"format": "prettier --write './**/*.+(js|jsx|ts|tsx|json|yml|yaml|md|mdx|html|css)'",
"lint": "next lint",
"start": "next start"
}
}