-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.85 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.85 KB
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
{
"name": "configcat-react",
"version": "5.0.3",
"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",
"coverage": "vitest run --coverage",
"prepare": "npm run build",
"test": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint . --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/sdk": "^1.0.2",
"tslib": "^2.4.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^4.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "~20.19.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-istanbul": "^4.1.2",
"eslint": "^9.28.0",
"eslint-plugin-import": "^2.31.0",
"gulp": "^5.0.1",
"gulp-replace": "^1.1.3",
"gulp-typescript": "^6.0.0-alpha.1",
"jsdom": "^27.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.1.2",
"typescript-eslint": "^8.34.0",
"vitest": "^4.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/configcat/react-sdk"
}
}