-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 3.1 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
{
"name": "@shopify/i18next-shopify",
"version": "0.2.10",
"description": "i18nFormat plugin to use Shopify's translation format with i18next",
"main": "./dist/commonjs/index.js",
"module": "dist/es/index.js",
"types": "dist/types/index.d.ts",
"keywords": [
"i18next",
"i18next-format"
],
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"homepage": "https://github.com/Shopify/i18next-shopify",
"bugs": "https://github.com/Shopify/i18next-shopify/issues",
"repository": {
"type": "git",
"url": "https://github.com/Shopify/i18next-shopify"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@babel/cli": "^7.15.0",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.15.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.26.1",
"@changesets/get-release-plan": "^4.0.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.2",
"@shopify/eslint-plugin": "^46.0.0",
"@shopify/prettier-config": "^1.1.2",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-prettier": "^5.0.0-alpha.2",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-testing-library": "^7.0.0",
"i18next": "^24.0.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"react": "17.0.2",
"react-dom": "^17.0.1",
"react-i18next": "^15.0.0",
"react-test-renderer": "^17.0.1",
"rimraf": "6.0.1",
"rollup": "2.79.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "7.0.2",
"typescript": "^5.1.6",
"yargs": "17.7.2"
},
"jest": {
"testEnvironment": "jsdom"
},
"scripts": {
"test": "jest --coverage --runInBand --ci",
"lint": "npm-run-all lint:eslint",
"lint:eslint": "eslint . --max-warnings 0 --cache --cache-location '.cache/eslint'",
"tdd": "jest --watch",
"clean": "rimraf dist && mkdir dist && rimraf locale-data",
"copy": "cp ./dist/umd/i18nextShopify.min.js ./i18nextShopify.min.js && cp ./dist/umd/i18nextShopify.js ./i18nextShopify.js",
"build:cjs": "yarn run babel src --out-dir dist/commonjs",
"build:es": "BABEL_ENV=jsnext yarn run babel src --out-dir dist/es",
"build:rollup": "yarn run rollup -c && rollup -c --compact",
"build": "npm run clean && npm run build:cjs && npm run build:es && npm run build:rollup && npm run copy",
"version-package": "changeset version",
"release": "npm run build && changeset publish"
},
"author": "Michael Overmeyer <michael.overmeyer@shopify.com>",
"contributors": [],
"license": "MIT",
"lock": false,
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"dependencies": {
"globals": "^15.9.0"
}
}