-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "root",
"private": true,
"scripts": {
"setup": "yarn install",
"test": "yarn workspace jemmawynne-app test",
"build": "yarn workspace jemmawynne-app build",
"start:app": "yarn workspace jemmawynne-app start",
"ncu": "yarn exec ncu && yarn workspaces run ncu",
"ncu:u": "yarn exec ncu -u && yarn workspaces run ncu -u && yarn install"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@next/eslint-plugin-next": "^12.3.4",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"babel-eslint": "^10.1.0",
"dotenv": "^16.0.3",
"eslint": "^8.41.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^7.0.4",
"npm-check-updates": "^12.5.12",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"typescript": "^4.9.5",
"vercel": "^24.2.5",
"yarnhook": "^0.6.0"
},
"workspaces": [
"app",
"sanity"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged",
"post-checkout": "yarnhook",
"post-merge": "yarnhook",
"post-rewrite": "yarnhook"
}
},
"resolutions": {
"graphql": "^15.5.1",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
},
"packageManager": "[email protected]"
}