-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 941 Bytes
/
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
{
"name": "quadtree-visualizer",
"homepage": "https://ndbaker1.github.io/quadtree-visualizer/",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"deploy": "next build && next export && touch out/.nojekyll && gh-pages -d out -t true && echo site published to: && node -p \"require('./package.json').homepage\"",
"lint": "eslint . ",
"lint-fix": "eslint . --fix"
},
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"next": "10.0.5",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-plugin-react": "^7.22.0",
"gh-pages": "^3.1.0",
"sass": "^1.32.2",
"typescript": "^4.1.3"
}
}