-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
76 lines (76 loc) · 2.1 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
{
"name": "anyway-merge-app",
"private": true,
"scripts": {
"dev": "run-p dev:*",
"dev:next": "cross-env NODE_OPTIONS='--inspect' next dev",
"dev:path": "pathpida --ignorePath .gitignore --watch --output src/libs",
"build": "pathpida --ignorePath .gitignore && next build",
"start": "next start",
"lint": "next lint",
"lint-staged": "lint-staged",
"lint:prettier": "prettier --check src",
"fix:prettier": "prettier -w src",
"lint:type": "bash -c tsc --noEmit",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,jsx,tsx}": [
"eslint --fix",
"yarn fix:prettier"
]
},
"dependencies": {
"@octokit/rest": "^18.12.0",
"@react-hook/mouse-position": "^4.1.3",
"@reduxjs/toolkit": "^1.6.2",
"@types/styletron-engine-atomic": "^1.1.1",
"@types/styletron-react": "^5.0.3",
"@types/styletron-standard": "^2.0.2",
"ably": "1.2.5-beta.1",
"baseui": "^10.6.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"locutus": "^2.0.15",
"next": "12.0.4",
"next-auth": "^4.0.2",
"p5": "^1.4.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-draggable": "^4.4.4",
"react-lottie": "^1.2.3",
"react-redux": "^7.2.6",
"react-snowfall": "^1.1.1",
"react-vfx": "^0.5.0",
"recoil": "^0.5.2",
"sass": "^1.45.1",
"styletron-engine-atomic": "^1.4.8",
"styletron-react": "^6.0.2"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@types/node": "16.11.10",
"@types/p5": "^1.3.1",
"@types/react": "17.0.37",
"@types/react-lottie": "^1.2.6",
"babel-preset-php": "^2.0.0",
"cross-env": "^7.0.3",
"eslint": "7",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-baseui": "^10.6.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-unused-imports": "^2.0.0",
"npm-run-all": "^4.1.5",
"particles-bg": "^2.5.5",
"pathpida": "^0.17.0",
"prettier": "^2.5.0",
"typescript": "4.5.2"
}
}