forked from lingui/js-lingui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.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
{
"private": true,
"version": "3.0.0-13",
"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 NODE_ICU_DATA=node_modules/full-icu jest -c scripts/jest/config.unit.js --watch",
"watch:integration": "cross-env 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.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@testing-library/react": "^10.0.4",
"@types/babel-types": "^7.0.7",
"@types/jest": "^25.2.3",
"@types/ramda": "^0.27.6",
"@types/react": "^16.9.35",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"babel-code-frame": "^6.26.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-plugin-macros": "^2.8.0",
"chalk": "^4.0.0",
"cross-env": "^7.0.2",
"depcheck": "^0.9.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^7.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.20.0",
"filesize": "^6.1.0",
"fs-extra": "^9.0.0",
"full-icu": "^1.3.1",
"glob": "^7.1.4",
"gzip-size": "^5.1.1",
"jest": "^26.0.1",
"jest-junit": "^10.0.0",
"jest-serializer-html": "^7.0.0",
"memory-fs": "^0.5.0",
"minimist": "^1.2.5",
"mock-fs": "^4.12.0",
"mockdate": "^3.0.2",
"ncp": "^2.0.0",
"nixt": "^0.5.0",
"node-emoji": "^1.10.0",
"now": "^19.0.1",
"npm-cli-login": "^0.1.1",
"ora": "^4.0.4",
"pkg-up": "^3.1.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"regenerator-runtime": "^0.13.5",
"rimraf": "^3.0.2",
"rollup": "^2.10.9",
"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": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"semver": "^7.3.2",
"strip-ansi": "^6.0.0",
"targz": "^1.0.1",
"tmp": "^0.2.1",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3",
"webpack": "^4.43.0"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/lingui/js-lingui.git"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/js-lingui"
}
}