forked from lingui/js-lingui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.34 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
{
"private": true,
"version": "3.0.0-20",
"author": {
"name": "Tomáš Ehrlich",
"email": "tomas.ehrlich@gmail.com"
},
"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": "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"
},
"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",
"@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",
"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",
"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",
"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"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/lingui/js-lingui.git"
}
}