This repository has been archived by the owner on Sep 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.96 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
67
68
69
70
71
72
73
74
75
76
{
"repository": {
"type": "git",
"url": "git://github.com/Toby222/NecroGame.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prod": "yarn build && yarn start",
"lint:eslint-strict": "yarn lint:eslint --max-warnings=0",
"lint:eslint": "eslint src/**/*.{ts,tsx}",
"lint:prettier": "prettier . --check",
"lint": "yarn lint:eslint && yarn lint:prettier",
"format:eslint": "yarn lint:eslint --fix",
"format:prettier": "prettier . --write",
"format": "yarn format:eslint && yarn format:prettier",
"fmt": "yarn format",
"test": "tsc && yarn lint:eslint-strict && yarn lint:prettier"
},
"dependencies": {
"@types/node": "^14.14.13",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"next": "^10.0.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"prettier": "^2.2.1"
},
"version": "0.0.7",
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"settings": {
"maxWarnings": 0,
"react": {
"version": "detect"
}
},
"extends": [
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_"
}
]
}
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"printWidth": 150
}
}