This repository has been archived by the owner on Aug 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.54 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
{
"name": "create-keystone-app-repo",
"private": true,
"workspaces": [
"create-keystone-app",
"create-keystone-app/starter"
],
"license": "MIT",
"dependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.2",
"@manypkg/cli": "^0.20.0",
"@preconstruct/cli": "^2.2.1",
"@types/async-retry": "^1.4.4",
"@types/fs-extra": "^11.0.0",
"@types/jest": "^29.0.0",
"async-retry": "^1.3.3",
"jest": "^29.0.0",
"playwright": "^1.24.2",
"prettier": "^2.7.1",
"tempy": "^1.0.1",
"tree-kill": "^1.2.2",
"typescript": "^5.0.0"
},
"scripts": {
"postinstall": "preconstruct dev && manypkg check && cd create-keystone-app/starter && yarn postinstall",
"build": "preconstruct build",
"format": "prettier --write \"**/*.{js,json,ts,tsx,md}\"",
"lint:prettier": "prettier --list-different \"**/*.{js,json,ts,tsx,md}\"",
"lint:types": "tsc",
"test": "yarn lint:prettier && yarn lint:types",
"test:unit": "DATABASE_URL=file:./keystone.db yarn jest --runInBand",
"publish-changed": "yarn build && changeset publish",
"no-run-version-packages": "echo \"This workflow should not be run when there are changesets on main\" && exit 1"
},
"prettier": {
"singleQuote": true
},
"preconstruct": {
"packages": [
"create-keystone-app"
]
}
}