forked from Shopify/quilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.95 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
{
"name": "@shopify/react-i18n",
"version": "3.0.1",
"license": "MIT",
"description": "i18n utilities for React handling translations, formatting, and more.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc --p tsconfig.json"
},
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"author": "Shopify Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/quilt.git",
"directory": "packages/react-i18n"
},
"bugs": {
"url": "https://github.com/Shopify/quilt/issues"
},
"homepage": "https://github.com/Shopify/quilt/blob/master/packages/react-i18n/README.md",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/types": ">=7.0.0",
"@types/babel__core": "^7.0.4",
"@types/babel__template": "^7.0.0",
"@types/babel__traverse": "^7.0.0",
"@types/glob": "^7.1.1",
"intl-pluralrules": "^0.2.1"
},
"dependencies": {
"@shopify/dates": "^0.3.6",
"@shopify/decorators": "^1.1.11",
"@shopify/function-enhancers": "^1.0.9",
"@shopify/i18n": "^0.1.10",
"@shopify/react-effect": "^3.2.12",
"@shopify/react-hooks": "^1.9.1",
"@shopify/useful-types": "^2.1.5",
"@types/hoist-non-react-statics": "^3.0.1",
"change-case": "^3.1.0",
"glob": "^7.1.4",
"hoist-non-react-statics": "^3.0.1",
"lodash.clonedeep": "^4.0.0",
"lodash.merge": "^4.0.0",
"string-hash": "^1.1.3",
"tslib": "^1.9.3"
},
"sideEffects": false,
"peerDependencies": {
"react": "^16.0.0"
},
"optionalDependencies": {
"@babel/template": "^7.0.0",
"@babel/traverse": "^7.0.0",
"fs-extra": "^8.1.0"
},
"files": [
"dist/*",
"!tsconfig.tsbuildinfo",
"babel.d.ts",
"babel.js",
"generate-index.d.ts",
"generate-index.js",
"generate-dictionaries.d.ts",
"generate-dictionaries.js"
]
}