forked from ricokahler/sanity-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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
{
"name": "@hzdg/sanity-codegen",
"version": "0.9.5-6",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/hzdg/sanity-codegen.git"
},
"license": "MIT",
"author": {
"name": "Rico Kahler",
"email": "[email protected]",
"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.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.14.5",
"@babel/plugin-proposal-numeric-separator": "7.14.5",
"@babel/plugin-proposal-optional-chaining": "7.14.5",
"@babel/plugin-transform-runtime": "7.15.0",
"@babel/register": "7.15.3",
"@types/prettier": "2.3.2",
"babel-plugin-css-modules-transform": "1.6.2",
"babel-plugin-module-resolver": "4.1.0",
"regenerator-runtime": "0.13.9"
},
"devDependencies": {
"@babel/cli": "7.15.4",
"@babel/core": "7.15.5",
"@babel/node": "7.15.4",
"@babel/preset-env": "7.15.6",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "7.15.0",
"@ricokahler/exec": "1.1.0",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-node-resolve": "13.0.4",
"@types/jest": "26.0.24",
"@types/node": "14.17.15",
"@typescript-eslint/eslint-plugin": "4.29.3",
"@typescript-eslint/parser": "4.29.3",
"babel-eslint": "10.1.0",
"eslint": "7.32.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.9.2",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.25.1",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "27.0.6",
"prettier": "2.4.0",
"rollup": "2.56.3",
"typescript": "4.4.3"
},
"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"
}
}