forked from lingui/js-lingui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 4.56 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "js-lingui-workspaces",
"private": true,
"version": "3.2.1",
"author": {
"name": "Tomáš Ehrlich",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"test": "cross-env TZ=UTC NODE_ICU_DATA=node_modules/full-icu JEST_JUNIT_OUTPUT=results/unit.xml jest -c scripts/jest/config.unit.js --no-cache",
"test:integration": "cross-env TZ=UTC NODE_ICU_DATA=node_modules/full-icu JEST_JUNIT_OUTPUT=results/integration.xml jest -c scripts/jest/config.integration.js --no-cache",
"test:all": "yarn test && yarn test:integration",
"watch": "cross-env TZ=UTC NODE_ICU_DATA=node_modules/full-icu jest -c scripts/jest/config.unit.js --watch",
"watch:integration": "cross-env TZ=UTC NODE_ICU_DATA=node_modules/full-icu jest -c scripts/jest/config.integration.js --watch",
"lint:types": "tsc",
"lint:eslint": "eslint packages",
"lint:all": "yarn lint:eslint && yarn lint:types",
"release": "node ./scripts/release.js",
"release:integration": "node ./scripts/integration.js",
"release:build": "node ./scripts/build/",
"release:test": "node ./scripts/test.js",
"version:next": "lerna version --force-publish --no-private --preid next --create-release github --conventional-commits --conventional-prerelease --yes",
"version:latest": "lerna version --force-publish --no-private --create-release github --conventional-commits --yes",
"release:latest": "lerna publish from-package --contents build --dist-tag latest --yes",
"release:next": "lerna publish from-package --contents build --canary --preid next --pre-dist-tag next --yes",
"build:docs": "cd docs && ./vercel-build.sh",
"size-limit": "size-limit"
},
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@size-limit/preset-small-lib": "^4.10.1",
"@testing-library/react": "^11.0.4",
"@types/babel-types": "^7.0.9",
"@types/jest": "^26.0.14",
"@types/ramda": "^0.27.23",
"@types/react": "^16.9.51",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"babel-code-frame": "^6.26.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.5.2",
"babel-plugin-macros": "^2.8.0",
"chalk": "^4.1.0",
"codecov": "^3.8.1",
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.21.4",
"filesize": "^6.1.0",
"fs-extra": "^9.0.1",
"full-icu": "^1.3.1",
"glob": "^7.1.4",
"gzip-size": "^5.1.1",
"jest": "^26.5.2",
"jest-junit": "^12.0.0",
"jest-serializer-html": "^7.0.0",
"lerna": "^3.22.1",
"memory-fs": "^0.5.0",
"minimist": "^1.2.5",
"mock-fs": "^4.13.0",
"mockdate": "^3.0.2",
"ncp": "^2.0.0",
"nixt": "^0.5.0",
"node-emoji": "^1.10.0",
"npm-cli-login": "^0.1.1",
"ora": "^5.1.0",
"pkg-up": "^3.1.0",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"rollup": "^2.29.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-prettier": "^2.1.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.3",
"semver": "^7.3.2",
"set-tz": "^0.2.0",
"size-limit": "^4.10.1",
"strip-ansi": "^6.0.0",
"targz": "^1.0.1",
"tmp": "^0.2.1",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"yalc": "^1.0.0-pre.45"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/lingui/js-lingui.git"
},
"size-limit": [
{
"path": "./packages/core/build/cjs/core.production.min.js",
"limit": "3 kB"
},
{
"path": "./packages/detect-locale/build/cjs/detect-locale.production.min.js",
"limit": "1 kB"
},
{
"path": "./packages/react/build/cjs/react.production.min.js",
"limit": "5 kB"
},
{
"path": "./packages/remote-loader/build/cjs/remote-loader.production.min.js",
"limit": "5 kB"
}
]
}