-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
70 lines (70 loc) · 1.99 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
{
"name": "configcat-react",
"version": "4.8.1",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.build.esm.json && gulp esm",
"build:cjs": "tsc -p tsconfig.build.cjs.json && gulp cjs",
"prepare": "npm run build",
"test": "react-scripts test --detectOpenHandles --runInBand --no-cache",
"lint": "eslint . --ext .ts --ext .tsx",
"lint:fix": "eslint . --ext .ts --ext .tsx --fix"
},
"description": "ConfigCat is a configuration as a service that lets you manage your features and configurations without actually deploying new code.",
"main": "lib/cjs/index.js",
"types": "lib/types/index.d.ts",
"module": "lib/esm/index.js",
"keywords": [
"configcat",
"config",
"configuration",
"remote configuration",
"configcat client",
"feature flags",
"feature toggle",
"feature switch",
"canary release",
"soft launch",
"release strategy",
"react",
"reactjs"
],
"author": "ConfigCat",
"homepage": "https://configcat.com",
"license": "MIT",
"dependencies": {
"configcat-common": "9.3.1",
"tslib": "^2.4.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^27.5.0",
"@types/node": "^18.11.18",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.27.5",
"gulp": "^5.0.0",
"gulp-replace": "^1.1.3",
"gulp-typescript": "^6.0.0-alpha.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"typescript": "^4.1.2"
},
"overrides": {
"chokidar": "3.5.3",
"cookie": "0.7.2",
"glob-parent": "5.1.2",
"nth-check": "2.1.1",
"postcss": "8.4.31"
}
}