-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 977 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
{
"name": "cookr",
"private": true,
"version": "0.0.0",
"description": "A cooking recipes management app",
"license": "MIT",
"author": "Benoît Burgener",
"workspaces": [
"packages/*"
],
"scripts": {
"validate": "eslint . --ext .js,.ts,.vue --ignore-path .gitignore",
"format": "npm run validate -- --fix",
"test": "npm run validate && npm run test --workspaces --if-present",
"gen:graphql:types": "graphql-codegen"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.16.2",
"@graphql-codegen/client-preset": "^1.2.4",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/compiler-sfc": "^3.2.45",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.0.3",
"graphql": "^16.6.0",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
}
}