-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
83 lines (83 loc) · 3 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
{
"name": "flagsmith",
"description": "Feature flagging to support continuous development",
"main": "./flagsmith/index.js",
"scripts": {
"typecheck": "tsc",
"build": "npm run generatetypes && npm run bundle && npm run typecheck",
"bundle": "rollup -c && node ./move-react.js",
"deploy": "npm run build && npm test && cd ./lib/flagsmith/ && npm publish && cd ../../lib/react-native-flagsmith && npm publish",
"deploy:beta": "npm run build && npm test && cd ./lib/flagsmith/ && npm publish --tag beta && cd ../../lib/react-native-flagsmith && npm publish --tag beta",
"dev": "nodemon",
"generatetypes": "curl https://raw.githubusercontent.com/Flagsmith/flagsmith/refs/heads/main/sdk/evaluation-context.json -o evaluation-context.json && npx quicktype -o evaluation-context.ts --src-lang schema --just-types --no-prefer-types --nice-property-names evaluation-context.json && rm evaluation-context.json",
"postinstall": "patch-package",
"prepublish": "npx in-publish && npm run build || echo",
"test": "jest --env=jsdom"
},
"repository": {
"type": "git",
"url": "https://github.com/Flagsmith/flagsmith-js-client/"
},
"keywords": [
"react native",
"feature flagger",
"continuous deployment"
],
"author": "SSG",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Flagsmith/flagsmith-js-client/issues"
},
"homepage": "https://flagsmith.com",
"devDependencies": {
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.4",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"in-publish": "^2.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.1.7",
"patch-package": "^6.5.0",
"quicktype": "^23.0.170",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.77.0",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"tiny-replace-files": "^1.0.2",
"ts-jest": "^29.1.2",
"ts-loader": "^9.2.7",
"tslib": "^2.4.0",
"typescript": "^4.6.2"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"@babel/preset-react": "^7.24.1",
"encoding": "^0.1.12",
"fast-deep-equal": "^3.1.3",
"fs-extra": "^11.2.0",
"isomorphic-unfetch": "^3.0.0",
"react-native-sse": "^1.1.0",
"reconnecting-eventsource": "^1.5.0"
},
"types": "./index.d.ts"
}