forked from saiichihashimoto/sanity-typed-schema-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.56 KB
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
{
"name": "sanity-typed-schema-builder",
"version": "0.0.0-development",
"description": "Build Sanity schemas declaratively and get typescript types of schema values for free!",
"keywords": [
"sanity",
"schema",
"typescript",
"builder"
],
"homepage": "https://saiichihashimoto.github.io/sanity-typed-schema-builder",
"repository": "github:saiichihashimoto/sanity-typed-schema-builder",
"license": "MIT",
"author": "Saiichi Hashimoto (http://saiichihashimoto.com)",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prebuild": "rm -rf dist tsconfig.tsbuildinfo",
"build": "tsc --project tsconfig.json",
"dev": "jest --watch",
"lint": "run-p --aggregate-output --continue-on-error lint:*",
"lint:eslint": "eslint --color --ext .js,.ts,.tsx --config ./.eslintrc.strict.js --ignore-pattern '!.*' .",
"lint:prettier": "prettier --color --check .",
"lint:sort-package-json": "sort-package-json \"**/package.json\" \"!node_modules/**\" --check",
"prepare": "is-ci || run-p --continue-on-error prepare:*",
"prepare:brew": "brew bundle",
"prepare:husky": "husky install",
"test": "jest"
},
"dependencies": {
"@portabletext/types": "1.0.3",
"@types/lodash": "4.14.182",
"lodash": "4.17.21",
"type-fest": "2.18.0",
"zod": "3.17.10"
},
"devDependencies": {
"@faker-js/faker": "7.3.0",
"@jest/globals": "28.1.3",
"@jest/types": "28.1.3",
"@types/jest": "28.1.6",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.33.0",
"eslint": "8.20.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-fp": "2.3.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-lodash-fp": "2.2.0-a1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"eslint-plugin-unicorn": "43.0.2",
"husky": "8.0.1",
"imagemin-lint-staged": "0.5.1",
"is-ci": "3.0.1",
"jest": "28.1.3",
"lint-staged": "13.0.3",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"sanity": "3.2.0",
"semantic-release": "19.0.3",
"sort-package-json": "1.48.1",
"ts-jest": "28.0.7",
"ts-node": "10.9.1",
"typescript": "4.9.4"
},
"peerDependencies": {
"sanity": "^3.2.0"
},
"engines": {
"node": "18.12.1"
}
}