forked from flagship-io/flagship-react-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.58 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
{
"name": "@flagship.io/react-sdk",
"version": "0.0.15",
"description": "Flagship REACT SDK",
"main": "dist/index.js",
"files": [
"dist",
"CONTRIBUTING.md",
"README.md",
"package.json"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"release": "np",
"version": "npm run build",
"publish": "npm run update:react-dev-demo && git add . && git commit -m\"Post publish update\" && git push && npm run publish:reactDemoDev",
"publish:reactDemoDev": "cd ./examples/react-dev-demo && npm run deploy:github",
"update:react-dev-demo": "cd ./examples/react-dev-demo && npm install @flagship.io/react-sdk@latest @flagship.io/js-sdk@latest --save && cd ../../",
"clean": "rm -rf ./node_modules/react && rm -rf ./node_modules/react-dom",
"build": "npm install @flagship.io/js-sdk@latest --save && rm -rf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abtasty/flagship-react-sdk.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/abtasty/flagship-react-sdk/issues",
"email": "[email protected]"
},
"contributors": [
{
"name": "Emilien Domenge-Heritier",
"email": "[email protected]",
"url": "https://domenge.fr"
},
{
"name": "Guillaume Jacquart",
"email": "[email protected]"
}
],
"keywords": [
"flagship",
"abtasty",
"react",
"sdk"
],
"homepage": "https://github.com/abtasty/flagship-react-sdk#readme",
"dependencies": {
"@flagship.io/js-sdk": "^0.1.9"
},
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"awesome-typescript-loader": "^5.2.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"np": "^6.2.1",
"prettier": "^2.0.4",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"typescript": "^3.8.3"
}
}