-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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
{
"name": "farming-planner",
"version": "0.0.1",
"description": "Farming planner for games",
"repository": "https://github.com/Roadagain/farming-planner.git",
"author": "Roadagain <[email protected]>",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"test": "run-s test:*",
"test:typescript": "tsc --noEmit",
"test:jest": "jest",
"lint": "run-s lint:*",
"lint:eslint": "eslint --ext .js,.ts,.tsx .",
"lint:prettier": "prettier . --check",
"fix": "run-s fix:*",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "yarn lint:prettier --write"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/react": "^17.0.16",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-next": "^11.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.24.0",
"jest": "^27.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/data-grid": "^4.0.0-alpha.37",
"next": "^11.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}