-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.14 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.14 KB
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
{
"name": "next-hasura-boilerplate",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"app"
]
},
"scripts": {
"setup": "cp check-commits.sh .git/hooks/pre-push && cp check-commits.sh .git/hooks/pre-commit && chmod +x .git/hooks/pre-push && chmod +x .git/hooks/pre-commit && git remote add template git@github.com:dambusm/next-hasura-boilerplate.git",
"merge-template-changes": "git fetch template && git merge template/main --allow-unrelated-histories"
},
"devDependencies": {
"@types/node": "14.14.16",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"babel-eslint": "10.0.0",
"eslint": "7.21.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.3.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-no-unsanitized": "3.1.4",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-testcafe": "0.2.1",
"eslint-plugin-unicorn": "24.0.0",
"prettier": "2.2.1",
"typescript": "4.1.3"
}
}