-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
121 lines (121 loc) · 3.99 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
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
121
{
"name": "homebase-react",
"description": "A graph database for React.",
"version": "0.0.0-development",
"license": "MIT",
"homepage": "https://homebase.io",
"main": "./dist/js/homebase.react.js",
"private": false,
"scripts": {
"dev": "shadow-cljs watch dev & babel src/dev/homebase/dev/example/js --out-dir src/dev/homebase/dev/example/js_compiled --watch && kill $!",
"build": "rm -rf dist && shadow-cljs release npm && yarn bundle-ts",
"build:dev": "rm -rf dist && shadow-cljs compile npm && yarn bundle-ts",
"test:js": "yarn build && jest src/test/* && yarn tsd",
"test:js:dev": "yarn build:dev && jest src/test/* && yarn tsd",
"test:ts": "yarn bundle-ts && yarn tsd",
"test:cljs": "shadow-cljs compile test && node out/node-tests.js",
"test:cljs:watch": "shadow-cljs watch test-autorun",
"test": "yarn test:cljs && yarn test:js",
"test:dev": "yarn test:cljs && yarn test:js:dev",
"report": "rm -rf dist && shadow-cljs run shadow.cljs.build-report npm report.html",
"semantic-release": "semantic-release",
"_postinstall": "husky install",
"prepublish": "pinst --disable",
"postpublish": "pinst --enable",
"bundle-ts": "rsync -r types dist"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "7.11.6",
"@babel/core": "^7.12.17",
"@babel/plugin-transform-modules-commonjs": "7.12.1",
"@babel/plugin-transform-react-jsx": "7.10.4",
"@babel/preset-react": "^7.12.13",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@peculiar/webcrypto": "^1.1.7",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.1.1",
"@semantic-release/npm": "7.0.6",
"@semantic-release/release-notes-generator": "9.0.1",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"babel-eslint": "^10.1.0",
"babel-runtime": "6.26.0",
"commitizen": "^4.2.2",
"create-react-class": "15.6.3",
"cz-conventional-changelog": "^3.3.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest-dom": "^3.6.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"firebase": "^8.0.2",
"firebaseui": "^4.7.1",
"global-jsdom": "^8.1.0",
"highlight.js": "10.4.1",
"hoist-non-react-statics": "^3.3.0",
"husky": "5.0.0-beta.0",
"jest": "26.6.0",
"jest-performance-testing": "^1.0.0",
"jsdom": "^16.6.0",
"marked": "2.0.0",
"pinst": "2.0.0",
"prettier": "^2.2.1",
"react": "16.14.0",
"react-component-benchmark": "0.0.4",
"react-dom": "16.14.0",
"react-grid-layout": "^0.16.6",
"react-icons": "^2.2.7",
"react-performance-testing": "^1.2.3",
"react-test-renderer": "^16.14.0",
"reakit": "^0.11.1",
"semantic-release": "17.2.3",
"semantic-release-cli": "5.4.0",
"shadow-cljs": "2.11.4",
"ts-jest": "^26.4.4",
"tsd": "^0.14.0",
"typescript": "^4.1.0"
},
"types": "./dist/types",
"keywords": [
"react",
"relational",
"database",
"datalog",
"state",
"graph"
],
"repository": {
"type": "git",
"url": "https://github.com/homebaseio/homebase-react.git"
},
"bugs": {
"url": "https://github.com/homebaseio/homebase-react/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"author": "Chris Smothers <[email protected]> (https://homebase.io)",
"contributors": [
"JB Rubinovitz <[email protected]> (https://homebase.io)"
],
"dependencies": {}
}