-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
{
"name": "@featbit/react-client-sdk",
"version": "1.0.6",
"description": "FeatBit client SDK for React",
"keywords": [
"FeatBit",
"React",
"feature flags"
],
"author": "FeatBit",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/featbit/featbit-react-client-sdk"
},
"homepage": "https://github.com/featbit/featbit-react-client-sdk",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rimraf dist && tsc",
"lint": "tslint -p tsconfig.json 'src/**/*.ts*'",
"lint:all": "npm run lint",
"check-typescript": "tsc",
"prepublishOnly": "npm run build",
"prettier": "prettier --write 'src/*.@(js|ts|tsx|json|css)'"
},
"devDependencies": {
"@types/hoist-non-react-statics": "^3.3.1",
"@types/lodash.camelcase": "^4.3.6",
"@types/prop-types": "^15.7.4",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.0.0",
"rimraf": "^3.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.5.3"
},
"dependencies": {
"@featbit/js-client-sdk": "^3.0.6",
"hoist-non-react-statics": "^3.3.2",
"lodash.camelcase": "^4.3.0"
},
"peerDependencies": {
"react": "^16.6.3 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0"
}
}