This repository was archived by the owner on Aug 28, 2025. It is now read-only.
forked from exivity-archive/react-orbitjs
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.88 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.88 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
{
"name": "react-orbitjs",
"version": "0.1.10",
"description": "React.js bindings for Orbit.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/exivity/react-orbitjs.git"
},
"keywords": [
"react",
"orbitjs"
],
"author": "Joram van den Boezem <joram@vandenboezem.nl>",
"bugs": {
"url": "https://github.com/exivity/react-orbitjs/issues"
},
"homepage": "https://github.com/exivity/react-orbitjs#readme",
"main": "dist",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"prepublishOnly": "rm -rf dist && tsc",
"start": "webpack-dev-server --config webpack.docs.config.js",
"karma:start": "yarn build && yarn karma start ./tests/karma.conf.js --fail-on-empty-test-suite",
"test:watch:detached": "DETACHED=true yarn karma:start",
"test": "CI=true yarn karma:start --single-run",
"lint:js": "yarn eslint . --ext .js --ext .ts --ext .jsx --ext .tsx"
},
"devDependencies": {
"@bigtest/convergence": "^1.1.1",
"@bigtest/interactor": "^0.9.1",
"@bigtest/mocha": "^0.5.2",
"@bigtest/react": "^0.1.2",
"@material-ui/core": "^3.9.1",
"@material-ui/icons": "^3.0.2",
"@orbit/coordinator": "^0.15.23",
"@orbit/data": "^0.15.8",
"@orbit/indexeddb": "^0.15.25",
"@orbit/indexeddb-bucket": "^0.15.23",
"@orbit/jsonapi": "^0.15.25",
"@orbit/local-storage-bucket": "^0.15.23",
"@orbit/store": "^0.15.8",
"@types/chai": "^4.1.7",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"@types/react-router": "^4.4.3",
"@types/react-router-dom": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^1.2.0",
"@typescript-eslint/parser": "^1.2.0",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"copy-webpack-plugin": "^4.2.3",
"eslint": "^5.13.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react-hooks": "^1.4.0",
"html-webpack-plugin": "3.2.0",
"karma": "^4.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"prettier": "^1.16.3",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-router-dom": "^4.3.1",
"react-test-renderer": "^16.2.0",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"ts-loader": "^5.3.3",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.1.4",
"webpack": "4"
},
"dependencies": {
"@types/recompose": "0.30.3",
"hoist-non-react-statics": "3.3.0",
"recompose": "^0.30.0"
},
"peerDependencies": {
"@orbit/core": "^0.15.0",
"@orbit/data": "^0.15.0",
"@orbit/store": "^0.15.0",
"react": ">=16.8"
}
}