-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.72 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
{
"name": "pg-nextjs-boilerplate",
"version": "0.1.0",
"author": {
"name": "Pathetic Geek",
"url": "https://github.com/patheticGeek"
},
"private": true,
"scripts": {
"start": "next start",
"build": "next build",
"dev": "next dev",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "yarn lint --fix",
"verify": "yarn prettier && yarn lint",
"verify:fix": "yarn prettier:fix && yarn lint:fix"
},
"dependencies": {
"babel-eslint": "^10.1.0",
"next": "11.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"twind": "^0.16.16"
},
"devDependencies": {
"@next/eslint-plugin-next": "^11.0.1",
"@types/node": "^15.6.2",
"@types/react": "17.0.14",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^6.0.0",
"prettier": "^2.3.0",
"prettier-config-standard": "^4.0.0",
"typescript": "4.3.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier",
"pre-push": "yarn verify"
}
}
}