-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.46 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
{
"name": "@ijsto/keystone-plugins",
"version": "0.0.0",
"private": true,
"description": "A monorepo containing Keystone.js plugins by iJS.to",
"license": "MIT",
"workspaces": [
"packages/*",
"docs/*",
"apps/*",
"examples/*"
],
"scripts": {
"build": "preconstruct build",
"clean": "manypkg exec rm -rf node_modules && manypkg exec rm -rf dist && manypkg exec rm -rf .turbo && manypkg exec rm -rf .next && manypkg exec rm -rf .keystone && rm -rf node_modules",
"dev": "turbo run dev --parallel",
"postinstall": "preconstruct dev",
"release": "yarn preconstruct build && changeset publish",
"version": "changeset version",
"test": "jest"
},
"dependencies": {
"@babel/core": "^7.16.12",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/plugin-transform-typescript": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-flow": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.20.0",
"@jest/test-sequencer": "^26.6.3",
"@manypkg/cli": "^0.19.1",
"@preconstruct/cli": "2.2.1",
"@preconstruct/eslint-plugin-format-js-tag": "^0.2.0",
"@testing-library/jest-dom": "^5.16.1",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.21",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-loader": "^8.2.3",
"babel-plugin-styled-components": "^1.13.3",
"chalk-cli": "^4.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"is-ci": "^3.0.1",
"jest": "^26.6.3",
"prettier": "^2.5.1",
"remark-cli": "^6.0.1",
"remark-frontmatter": "^1.3.3",
"remark-toc": "^5.1.1",
"rimraf": "^3.0.2",
"terminal-link-cli": "^3.0.0",
"typescript": "^4.5.5"
},
"resolutions": {
"babel-plugin-remove-graphql-queries": "2.7.2",
"next": "12.2.4"
},
"preconstruct": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"turbo": "^1.1.7"
},
"packageManager": "pnpm@6.32.1"
}