forked from ricokahler/sanity-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.12 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.12 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
{
"name": "sanity-codegen",
"version": "0.9.8",
"private": true,
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/ricokahler/sanity-codegen"
},
"license": "MIT",
"author": {
"name": "Rico Kahler",
"email": "ricokahler@me.com",
"url": "https://github.com/ricokahler"
},
"sideEffects": false,
"scripts": {
"build": "node ./scripts/build",
"test": "jest",
"typecheck": "npx tsc --project ./tsconfig.typecheck.json",
"lint": "npx eslint --ext .ts,.js ./src"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.16.7",
"@babel/plugin-proposal-numeric-separator": "7.16.7",
"@babel/plugin-proposal-optional-chaining": "7.16.7",
"@babel/plugin-transform-runtime": "7.16.10",
"@babel/register": "7.16.9",
"@types/prettier": "2.4.3",
"babel-plugin-css-modules-transform": "1.6.2",
"babel-plugin-module-resolver": "4.1.0",
"jsdom-global": "3.0.2",
"regenerator-runtime": "0.13.9"
},
"devDependencies": {
"@babel/cli": "7.16.8",
"@babel/core": "7.16.12",
"@babel/node": "7.16.8",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@ricokahler/exec": "1.1.0",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-node-resolve": "13.1.3",
"@types/jest": "27.4.0",
"@types/node": "14.18.9",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-eslint": "10.1.0",
"eslint": "7.32.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.10.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"jest": "27.4.7",
"prettier": "2.5.1",
"rollup": "2.66.0",
"typescript": "4.5.5"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"prettier": "^2.0.0"
}
}