-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 860 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "pull-request-community",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@mdi/js": "^5.6.55",
"@mdi/react": "^1.4.0",
"next": "^11.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-responsive": "^8.2.0",
"sass": "^1.32.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^14.11.2",
"@types/react": "^16.9.50",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"typescript": "^4.3.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"data/people/*.{json}": [
"prettier --write",
"git add"
],
"**/*.{ts,tsx,md,scss}": [
"prettier --write",
"git add"
]
}
}