forked from nhost/nhost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "nhost-root",
"private": true,
"version": "0.0.0",
"description": "Nhost Monorepo",
"author": "Nhost",
"license": "MIT",
"homepage": "https://nhost.io",
"repository": {
"type": "git",
"url": "git+https://github.com/nhost/nhost.git"
},
"bugs": {
"url": "https://github.com/nhost/nhost/issues"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install config/.husky",
"build": "pnpm run build:all --filter=!@nhost/dashboard --filter=!@nhost/docs --filter=!@nhost-examples/*",
"build:dashboard": "turbo run build --filter=@nhost/dashboard",
"build:docs": "turbo run build --filter=@nhost/docs",
"build:all": "turbo run build --include-dependencies",
"dev": "turbo run dev --filter=!@nhost/dashboard --filter=!@nhost/docs --filter=!@nhost-examples/* --filter=!@nhost/docgen --no-deps --include-dependencies",
"clean:all": "pnpm clean && rm -rf ./{{packages,examples}/*,docs,dashboard}/{.nhost,node_modules} node_modules",
"clean": "rm -rf ./{{packages,examples}/*,docs,dashboard}/{dist,umd,.next,.turbo,coverage}",
"ci:version": "changeset version && pnpm install --frozen-lockfile false",
"coverage": "pnpm run test -- --coverage",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint": "pnpm run lint:all --filter=!@nhost/dashboard",
"lint:dashboard": "turbo run lint --filter=@nhost/dashboard",
"lint:all": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"prerelease": "pnpm clean && pnpm install && pnpm build",
"release": "pnpm run prerelease && changeset publish",
"snapshot": "pnpm prerelease && changeset version --snapshot preview && pnpm install && changeset publish --tag preview",
"test": "turbo run test --filter=!@nhost/dashboard --filter=!@nhost/docs --filter=!@nhost-examples/* --no-deps --include-dependencies",
"test:all": "turbo run test",
"test:dashboard": "turbo run test --filter=@nhost/dashboard",
"e2e:dashboard": "turbo run e2e --filter=@nhost/dashboard",
"e2e": "turbo run e2e --concurrency=1",
"changeset": "changeset",
"docgen": "turbo run build --filter=@nhost/docgen --no-deps && pnpm i && turbo run docgen --filter=!@nhost/docgen --filter=@nhost/* && :",
"sync-versions": "turbo run start --filter=@nhost/sync-versions --no-deps"
},
"workspaces": [
"packages/*",
"integrations/*",
"examples/*",
"docs",
"dashboard"
],
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-flow": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@changesets/cli": "^2.25.2",
"@faker-js/faker": "^7.6.0",
"@rollup/plugin-replace": "^5.0.1",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"@vitejs/plugin-react": "^3.0.0",
"@vitest/coverage-c8": "^0.30.0",
"eslint": "^8.26.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-vue": "^9.0.0",
"husky": "^8.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"turbo": "1.8.8",
"typedoc": "^0.22.18",
"typescript": "4.9.5",
"vite": "^4.0.2",
"vite-plugin-dts": "^2.0.0",
"vite-tsconfig-paths": "^4.0.3",
"vitest": "^0.30.0"
},
"resolutions": {
"graphql": "16.6.0"
},
"packageManager": "pnpm@7.17.0",
"engines": {
"node": ">=16 <17",
"pnpm": ">=7.17.0"
},
"eslintConfig": {
"extends": "./config/.eslintrc.js"
}
}