-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.67 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "pointless-profile-button",
"version": "1.0.0",
"description": "a button for GitHub README.md profiles that counts the number of times it was clicked",
"repository": "https://github.com/jdtzmn/pointless-profile-button.git",
"author": "jdtzmn <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write .",
"lint": "eslint --ext .ts,.tsx .",
"generate": "prisma generate",
"migrate": "prisma migrate save --experimental && prisma migrate up --experimental"
},
"private": true,
"dependencies": {
"@prisma/client": "^2.12.1",
"next": "^10.0.3",
"number-abbreviate": "^2.0.0",
"ordinal": "^1.0.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-dom-confetti": "^0.2.0",
"sass": "^1.29.0"
},
"devDependencies": {
"@prisma/cli": "^2.12.1",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"typescript": "^4.1.2"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json"
},
"plugins": [
"@typescript-eslint",
"react"
],
"extends": [
"standard-with-typescript",
"standard-jsx",
"standard-react",
"prettier",
"prettier/@typescript-eslint",
"prettier/react",
"prettier/standard"
],
"rules": {
"@typescript-eslint/no-redeclare": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-extraneous-class": "off",
"react/react-in-jsx-scope": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"react/prop-types": "off",
"@typescript-eslint/triple-slash-reference": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,css,md,json}": "prettier --write"
}
}