forked from TeXmeijin/anyway-merge-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1014 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
44
45
{
"name": "anyway-merge-app",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint-staged": "lint-staged",
"lint:prettier": "prettier --check src",
"fix:prettier": "prettier -w src"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx}": [
"yarn lint:prettier"
]
},
"dependencies": {
"@react-hook/mouse-position": "^4.1.3",
"ably": "1.2.5-beta.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"next": "12.0.4",
"next-auth": "^4.0.2",
"p5": "^1.4.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-vfx": "^0.5.0"
},
"devDependencies": {
"@types/node": "16.11.10",
"@types/p5": "^1.3.1",
"@types/react": "17.0.37",
"eslint": "7",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.0",
"typescript": "4.5.2"
}
}