This repository has been archived by the owner on Sep 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 2.35 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
{
"name": "react-sharedb",
"version": "8.0.0-alpha.28",
"description": "",
"main": "lib/index.js",
"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",
"format": "echo Run prettify twice && npm run -S _prettify && npm run -S _prettify",
"prepublish": "babel --optional runtime src --out-dir lib",
"postpublish": "rm -rf lib",
"precommit": "lint-staged && npm test",
"_prettify": "prettier-standard '{src,test}/**/*.{js,jsx}'"
},
"lint-staged": {
"{src,test}/**/*.{js,jsx}": [
"prettier-standard",
"prettier-standard",
"git add"
]
},
"author": "",
"license": "MIT",
"dependencies": {
"@nx-js/observer-util": "^4.1.3",
"@react-sharedb/model": "^1.1.0",
"hoist-non-react-statics": "^1.2.0",
"lodash": "4.x"
},
"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.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"express": "^4.16.2",
"husky": "^0.14.3",
"js-yaml": "^3.10.0",
"jsdom": "^11.3.0",
"lint-staged": "^4.3.0",
"mocha": "^3.5.3",
"prettier-standard": "^7.0.3",
"racer": "^0.9.3",
"racer-highway": "^8.0.0",
"racer-rpc": "dmapper/racer-rpc#v0.1.2",
"raf": "^3.4.1",
"react": "^16.7.0-alpha.2",
"react-dom": "^16.7.0-alpha.2",
"react-test-renderer": "^16.7.0-alpha.2",
"sharedb": "^1.0.0-beta.7",
"sharedb-mongo": "^1.0.0-beta.4",
"standard": "^10.0.3",
"wait-for-expect": "^0.6.2",
"ws": "^3.1.0"
},
"peerDependencies": {
"racer": "*",
"sharedb": "*",
"racer-highway": "*",
"react": "*"
}
}