-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "pull-request-community",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run open-browser && next dev",
"open-browser": "node ./scripts/open-browser.js",
"build": "next build",
"start": "npm run build && next start",
"prepare": "husky install",
"lint": "next lint && prettier --check .",
"lint:fix": "next lint --fix && prettier --write .",
"test:e2e": "playwright test"
},
"dependencies": {
"@mdi/js": "^5.6.55",
"@mdi/react": "^1.4.0",
"html2canvas": "^1.4.1",
"next": "^11.0.0",
"next-themes": "^0.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-responsive": "^8.2.0",
"sass": "^1.32.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@playwright/test": "^1.23.0",
"@types/node": "^14.11.2",
"@types/react": "^16.9.50",
"eslint": "^7.32.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"typescript": "^4.3.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*": [
"prettier --ignore-unknown --write"
]
}
}