-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
115 lines (115 loc) · 3.39 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "sanity-plugin-intl-input",
"version": "5.6.5-beta.0",
"license": "MIT",
"engines": {
"node": ">=14"
},
"author": {
"name": "Liam Martens",
"email": "[email protected]",
"url": "https://liammartens.com"
},
"keywords": [
"sanity",
"cms",
"headless",
"realtime",
"content",
"sanity-plugin",
"i18n",
"localization"
],
"files": [
"lib/",
"doc/",
"config.dist.json",
"sanity.json"
],
"repository": {
"type": "git",
"url": "https://github.com/LiamMartens/sanity-plugin-intl-input"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/LiamMartens/sanity-plugin-intl-input/issues"
},
"scripts": {
"build": "run-p build:*",
"build:type": "tsc -p .",
"build:badges": "rollup -c src/badges/rollup.config.js",
"build:input": "rollup -c src/input/rollup.config.js",
"build:resolver": "rollup -c src/resolver/rollup.config.js",
"build:structure": "rollup -c src/structure/rollup.config.js",
"build:actions": "rollup -c src/actions/rollup.config.js",
"build:constants": "rollup -c src/constants/rollup.config.js",
"build:utils": "rollup -c src/utils/rollup.config.js",
"watch": "run-p \"build:* -- -w\""
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@sanity/base": "^2.20.0",
"@sanity/check": "^2.0.9",
"@sanity/client": "^2.19.0",
"@sanity/desk-tool": "^2.21.0",
"@sanity/form-builder": "^2.20.0",
"@sanity/react-hooks": "^2.20.0",
"@sanity/structure": "^2.20.0",
"@sanity/types": "^2.19.0",
"@sanity/ui": "^0.36.10",
"@types/classnames": "^2.2.11",
"@types/lodash.chunk": "^4.2.6",
"@types/lodash.get": "^4.4.6",
"@types/react": "^17.0.0",
"@types/react-router": "^5.1.11",
"@types/react-router-dom": "^5.1.7",
"@types/resize-observer-browser": "^0.1.5",
"lerna": "^3.22.1",
"node-sass": "^5.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.13",
"react": "^16.0.0",
"react-router": "^5.1.0",
"react-router-dom": "^5.1.0",
"rollup": "^2.36.1",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"styled-components": "^5.3.1",
"typescript": "^4.1.3"
},
"peerDependencies": {
"@sanity/base": "^2.0.0",
"@sanity/desk-tool": ">=2.28.0",
"@sanity/form-builder": "^2.0.0",
"@sanity/react-hooks": "^2.0.0",
"@sanity/structure": "^2.0.0",
"@sanity/ui": "^0.36.12",
"react": "^17.0.0",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"styled-components": "^5.0.0"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"@cprecioso/country-flag-emoji": "^1.0.0",
"a11y-react-emoji": "^1.1.3",
"classnames": "^2.2.6",
"lodash.chunk": "^4.2.0",
"lodash.get": "^4.4.2",
"moment": "^2.29.1",
"regenerator-runtime": "^0.13.7",
"slugify": "^1.4.6"
}
}