-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1021 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
{
"name": "eve",
"version": "0.0.0",
"description": "A web application starter",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/djmccormick/eve.git"
},
"author": "Dustin McCormick",
"license": "MIT",
"bugs": {
"url": "https://github.com/djmccormick/eve/issues"
},
"homepage": "https://github.com/djmccormick/eve#readme",
"scripts": {
"lint": "eslint --cache .",
"format": "prettier --write \"{**/,}*.{js,jsx,ts,mjs,css,json,graphql,gql,md,yaml,yml,html,webmanifest,prettierrc,sh}\"",
"test": "npm run lint",
"prepare": "husky install"
},
"workspaces": [
"client",
"common",
"graphql",
"migrate",
"worker"
],
"devDependencies": {
"eslint": "8.25.0",
"eslint-config-next": "12.3.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.1",
"prettier": "2.7.1",
"prettier-plugin-sh": "0.12.8",
"pretty-quick": "3.1.3"
}
}