forked from deriv-com/translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.87 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
{
"name": "@deriv-com/translations",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"deriv-extract-translations": "./dist/deriv-extract-translations.cjs"
},
"private": false,
"version": "1.2.4",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && cp ./src/scripts/deriv-extract-translations.cjs ./dist/deriv-extract-translations.cjs",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest ./src/__tests__/*.test.tsx",
"prepublish": "npm run test && npm run build"
},
"peerDependencies": {
"react": "^17.x || ^18.x",
"react-dom": "^17.x || ^18.x"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/github": "^10.0.2",
"@semantic-release/release-notes-generator": "^13.0.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"i18next": "^23.7.18",
"jsdom": "^24.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.1",
"semantic-release": "^23.0.6",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.7.3",
"vitest": "^1.3.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.17.1"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.10",
"commander": "^12.0.0",
"crc-32": "^1.2.2",
"glob": "^10.3.12"
}
}