forked from lonestone/rolebase.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.25 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
{
"name": "rolebase",
"version": "1.0.0",
"license": "MIT",
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"postinstall": "patch-package",
"lint": "eslint ./packages ./functions --ext .jsx,.js,.ts,.tsx",
"lint:fix": "eslint ./packages ./functions --ext .jsx,.js,.ts,.tsx --fix",
"lint:format": "prettier --loglevel warn --write \"./{packages,functions}/**/*.{js,jsx,ts,tsx,css,md,json}\" "
},
"devDependencies": {
"@graphql-codegen/add": "^5.0.0",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/gql-tag-operations-preset": "^2.1.0",
"@graphql-codegen/introspection": "^4.0.0",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@graphql-codegen/typescript": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-storybook": "^0.6.13",
"eslint": "^8.49.0",
"patch-package": "^8.0.0",
"prettier": "^3.0.3",
"turbo": "^2.0.6"
}
}