forked from blitz-js/blitz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
161 lines (161 loc) · 5.4 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"examples/*",
"recipes/*"
],
"nohoist": [
"**/@prisma",
"**/@prisma/**"
]
},
"engines": {
"node": ">= 10.13.0"
},
"scripts": {
"postinstall": "npm rebuild husky && patch-package",
"predev": "lerna run clean --no-private --stream --parallel",
"dev": "lerna run dev --no-private --stream --parallel",
"link-cli": "yarn workspace blitz link",
"unlink-cli": "yarn workspace blitz unlink",
"build": "lerna run build --no-private --stream",
"lint": "eslint --ignore-path .gitignore --ext \".js,.ts,.tsx\" .",
"test": "yarn run lint && yarn run build && lerna run test --stream",
"test:packages": "yarn run build && yarn testonly:packages",
"test:examples": "yarn run build && yarn testonly:examples",
"testonly": "yarn test:packages && yarn test:examples",
"testonly:packages": "lerna run test --scope blitz && lerna run test --stream --scope @blitzjs/*",
"testonly:examples": "lerna run test --stream --scope @examples/* --concurrency 1",
"reset": "rimraf node_modules && git clean -xfd packages && yarn",
"publish-prep": "lerna run clean && yarn && yarn build",
"prepack": "cpy README.md packages/blitz/",
"postpack": "rimraf packages/blitz/README.md",
"publish-local": "yarn workspaces run yalc publish",
"publish-canary": "yarn run publish-prep && lerna publish --force-publish --preid canary --pre-dist-tag canary",
"publish-latest": "yarn run publish-prep && lerna publish --force-publish",
"publish-danger": "lerna publish --canary --pre-dist-tag danger --preid danger.$(git rev-parse --short HEAD) --allow-branch * --force-publish",
"danger:push-all": "git push --no-verify && git push --no-verify --tags"
},
"devDependencies": {
"@rollup/pluginutils": "3.0.8",
"@testing-library/jest-dom": "5.5.0",
"@testing-library/react": "10.0.3",
"@testing-library/react-hooks": "3.3.0",
"@types/b64-lite": "1.3.0",
"@types/cookie": "0.4.0",
"@types/cookie-session": "2.0.41",
"@types/cross-spawn": "6.0.2",
"@types/debug": "4.1.5",
"@types/detect-port": "1.3.0",
"@types/diff": "4.0.2",
"@types/dotenv-flow": "3.0.1",
"@types/flush-write-stream": "1.0.0",
"@types/from2": "2.3.0",
"@types/fs-extra": "8.1.0",
"@types/fs-readdir-recursive": "1.0.0",
"@types/gulp-if": "0.0.33",
"@types/ink-spinner": "3.0.0",
"@types/jest": "25.1.3",
"@types/jsonwebtoken": "8.5.0",
"@types/lodash": "4.14.150",
"@types/mem-fs": "1.1.2",
"@types/mem-fs-editor": "5.1.1",
"@types/merge-stream": "1.1.2",
"@types/mock-fs": "4.10.0",
"@types/node": "13.13.2",
"@types/node-fetch": "2.5.7",
"@types/parallel-transform": "1.1.0",
"@types/passport": "1.0.4",
"@types/pluralize": "0.0.29",
"@types/prettier": "2.0.0",
"@types/pump": "1.1.0",
"@types/pumpify": "1.4.1",
"@types/react": "16.9.34",
"@types/readable-stream": "2.3.5",
"@types/rimraf": "3.0.0",
"@types/tar": "4.0.3",
"@types/test-listen": "1.1.0",
"@types/through2": "2.0.34",
"@types/vinyl": "2.0.4",
"@types/vinyl-fs": "2.4.11",
"@types/webpack": "4.41.13",
"@typescript-eslint/eslint-plugin": "4.3.1-alpha.1",
"@typescript-eslint/parser": "4.3.1-alpha.1",
"@wessberg/cjs-to-esm-transformer": "0.0.22",
"@wessberg/rollup-plugin-ts": "1.3.3",
"babel-eslint": "10.x",
"babel-jest": "26.3.0",
"concurrently": "5.3.0",
"cpy-cli": "3.1.1",
"cross-env": "7.0.2",
"debug": "4.1.1",
"yalc": "1.0.0-pre.47",
"delay": "4.3.0",
"directory-tree": "2.2.4",
"eslint": "7.7.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-es": "mysticatea/eslint-plugin-es",
"eslint-plugin-es5": "1.5.0",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.0",
"eslint-plugin-simple-import-sort": "5.0.3",
"eslint-plugin-unicorn": "21.0.0",
"husky": "4.2.5",
"isomorphic-unfetch": "3.0.0",
"jest": "24.9.0",
"jest-environment-jsdom-sixteen": "1.0.3",
"lerna": "3.22.1",
"lint-staged": "10.2.13",
"mock-fs": "4.13.0",
"nock": "12.0.3",
"npm-run-all": "4.1.5",
"patch-package": "6.2.2",
"postinstall-postinstall": "2.1.0",
"prettier": "2.1.1",
"pretty-quick": "2.0.1",
"prompt": "1.0.0",
"react-test-renderer": "16.13.1",
"release": "6.1.0",
"rimraf": "3.0.2",
"rollup": "2.26.8",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-polyfills": "0.2.1",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-peer-deps-external": "2.2.3",
"semver": "7.3.2",
"stdout-stderr": "0.1.13",
"test-listen": "1.1.0",
"ts-jest": "24.3.0",
"tsdx": "0.13.3",
"tslib": "1.11.1",
"typescript": "4.0.3",
"wait-on": "4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged",
"pre-push": "yarn lint",
"post-rebase": "yarn install"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"resolutions": {
"jest": "24.9.0",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.8",
"ts-jest": "24.3.0"
},
"version": "0.0.0"
}