-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
89 lines (89 loc) · 2.01 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
{
"name": "react-intl-phraseapp",
"version": "4.2.0",
"description": "The In-Context-Editor for react using react-intl",
"homepage": "https://phrase.com",
"scripts": {
"test": "jest",
"dev": "webpack-cli --mode development",
"dist": "webpack-cli --mode production",
"prepublishOnly": "rm -rf dist/ && npm run dist"
},
"keywords": [
"react",
"react-intl",
"phraseapp",
"i18n",
"localization",
"phrase"
],
"author": "Phrase",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^20.6.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-test-renderer": "^18.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^18.2.0",
"react-intl": "^6.4.6",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-intl": ">=6"
},
"files": [
"dist/"
],
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./functions": "./dist/functions.js",
"./injectIntl": "./dist/injectIntl.js",
"./useIntl": "./dist/useIntl.js",
"./useSSRIntl": "./dist/useSSRIntl.js"
},
"typesVersions": {
"*": {
"functions": [
"dist/functions.d.ts"
],
"injectIntl": [
"dist/injectIntl.d.ts"
],
"useIntl": [
"dist/useIntl.d.ts"
],
"useSSRIntl": [
"dist/useSSRIntl.d.ts"
]
}
},
"sideEffects": false,
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testPathIgnorePatterns": [
"<rootDir>/examples/"
],
"testEnvironment": "jsdom"
},
"packageManager": "[email protected]"
}