forked from blitz-js/blitz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.63 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"examples/*"
],
"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": "lerna run lint --stream --parallel",
"test": "yarn run lint && yarn run build && yarn run testonly",
"testonly": "lerna run test --stream",
"reset": "rimraf node_modules && git clean -xfd packages && yarn",
"publish-prep": "yarn run reset && yarn run test",
"prepack": "cpy README.md packages/blitz/",
"postpack": "rimraf packages/blitz/README.md",
"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",
"danger:push-all": "git push --no-verify && git push --no-verify --tags"
},
"devDependencies": {
"@testing-library/jest-dom": "5.5.0",
"@testing-library/react": "10.0.3",
"@types/cross-spawn": "6.0.1",
"@types/debug": "4.1.5",
"@types/diff": "4.0.2",
"@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/jest": "25.1.3",
"@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/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/test-listen": "1.1.0",
"@types/through2": "2.0.34",
"@types/vinyl": "2.0.4",
"@types/vinyl-fs": "2.4.11",
"@wessberg/cjs-to-esm-transformer": "0.0.19",
"@wessberg/rollup-plugin-ts": "1.2.24",
"cpy-cli": "3.1.0",
"cross-env": "7.0.0",
"debug": "4.1.1",
"directory-tree": "2.2.4",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-unicorn": "19.0.1",
"husky": "4.2.5",
"isomorphic-unfetch": "3.0.0",
"jest": "24.9.0",
"lerna": "3.20.2",
"lint-staged": "10.0.8",
"mock-fs": "4.12.0",
"next": "9.4.2",
"nock": "12.0.3",
"npm-run-all": "4.1.5",
"patch-package": "6.2.2",
"postinstall-postinstall": "2.1.0",
"prettier": "2.0.4",
"pretty-quick": "2.0.1",
"prompt": "1.0.0",
"release": "6.1.0",
"rimraf": "3.0.2",
"rollup": "2.7.2",
"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.2",
"semver": "7.3.2",
"test-listen": "1.1.0",
"ts-jest": "24.3.0",
"tsdx": "0.13.1",
"tslib": "1.11.1",
"typescript": "3.8.3",
"wait-on": "4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && pretty-quick --staged",
"post-checkout": "if [[ $HUSKY_GIT_PARAMS =~ 1$ ]]; then yarn install --frozen-lockfile; fi",
"post-merge": "yarn install --frozen-lockfile",
"post-rebase": "yarn install"
}
},
"resolutions": {
"jest": "24.9.0",
"ts-jest": "24.3.0"
}
}