forked from startupjs/startupjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.97 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
{
"name": "@startupjs/react-sharedb",
"type": "module",
"version": "0.40.2",
"engines": {
"node": ">= 14"
},
"description": "Run ShareDB in React",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo '----- Test Hooks Syntax -----' && HOOKS=1 npm run _test && echo '----- Test Class Syntax -----' && npm run _test && echo '----- Test DEPRECATED Syntax -----' && DEPRECATED=1 npm run _test",
"_test": "PORT=3333 mocha ./test/**/*.mocha.js --bail --reporter spec --require babel-polyfill --compilers js:babel-register --require ./test/_client"
},
"license": "MIT",
"dependencies": {
"@nx-js/observer-util": "^4.1.3",
"@startupjs/model": "^0.40.2",
"@startupjs/react-sharedb-classes": "^0.40.2",
"@startupjs/react-sharedb-hooks": "^0.40.2",
"@startupjs/react-sharedb-util": "^0.40.2",
"hoist-non-react-statics": "^1.2.0",
"lodash": "^4.17.20",
"racer": "1.0.0",
"rich-text": "^4.0.0"
},
"devDependencies": {
"@oskarer/enzyme-wait": "^1.3.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"express": "^4.16.2",
"js-yaml": "^3.10.0",
"jsdom": "^11.3.0",
"mocha": "^3.5.3",
"racer-highway": "^8.1.0",
"racer-rpc": "0.1.9",
"raf": "^3.4.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.9.0",
"sharedb-mongo": "1.0.0-beta.15",
"wait-for-expect": "^0.6.2",
"ws": "^3.1.0"
},
"peerDependencies": {
"react": "16.9 - 17"
}
}