-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 4.13 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 4.13 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "cozify-sdk",
"version": "1.0.30",
"description": "JavaScript SDK for Cozify REST API",
"author": "tech-admin",
"license": "MIT",
"repository": "cozify/JS-SDK",
"node": "dist/sdk.node.js",
"browser": "dist/sdk.browser.js",
"module": "dist/sdk.es.js",
"main": "dist/sdk.node.js",
"jsnext:main": "dist/sdk.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "jest src",
"test:alarms": "jest src/reducers/alarms.test.js",
"test:connections": "jest src/reducers/connections.test.js",
"test:devices": "jest src/reducers/devices.test.js",
"test:hubs": "jest src/reducers/hubs.test.js",
"test:pairings": "jest src/reducers/pairings.test.js",
"test:idea": "jest src/reducers/idea.test.js",
"test:plans": "jest src/reducers/plans.test.js",
"test:rooms": "jest src/reducers/rooms.test.js",
"test:user": "jest src/reducers/user.test.js",
"test:watch": "jest src --watch --notify",
"cover": "jest src --coverage",
"flow": "flow",
"flow:check": "flow check ./src/",
"flow:status": "flow status",
"flow:coverage": "flow-coverage-report --config .flowcoverage.json",
"flow:deps": "flow-typed install",
"docs": "./node_modules/.bin/flow-remove-types src/ -d docs/src/ -p | ./node_modules/.bin/esdoc | rm -rf docs/src/",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"deploy": "gh-pages -d example/build",
"prepare": "npm run build",
"predeploy": "cd example && npm install && npm run build",
"precommit": "npm run flow && npm run lint && npm run test",
"prepublish": "npm run flow && npm run test && npm run docs && npm run build",
"db": "npx json-server --port=3001 --watch db.json"
},
"peerDependencies": {},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-flow-strip-types": "^7.6.3",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-flow": "^7.0.0",
"@babel/runtime": "^7.6.3",
"acorn": "^6.4.2",
"axios": "^0.21.1",
"babel-eslint": "^10.0.3",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-lodash": "^3.3.4",
"deep-freeze": "0.0.1",
"esdoc": "^1.1.0",
"esdoc-flow-type-plugin": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-standard": "^4.0.1",
"flow-bin": "^0.95.1",
"flow-typed": "^2.6.2",
"jest": "^27.0.6",
"rollup": "^1.26.0",
"rollup-all": "^1.6.16",
"rollup-jest": "0.0.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-cpy": "^1.1.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-flow-entry": "^0.3.3",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-npm": "^2.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-uglify": "^6.0.3"
},
"files": [
"dist"
],
"dependencies": {
"@apollo/client": "^3.0.0-beta.43",
"@apollo/link-ws": "^2.0.0-beta.3",
"@reduxjs/toolkit": "^1.6.0",
"axios-retry": "^3.1.2",
"core-js": "^3.3.6",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"get-value": "^3.0.1",
"graphql": "^14.6.0",
"graphql-normalizr": "^2.10.1",
"graphql-subscriptions-client": "^0.12.0",
"is-retry-allowed": "^1.2.0",
"lodash": "^4.17.21",
"normalizr": "^3.6.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"subscriptions-transport-ws": "^0.9.16",
"uuid": "^7.0.3"
}
}