-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 1.88 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
{
"name": "caracara",
"version": "0.1.0",
"private": true,
"dependencies": {
"@geut/discovery-swarm-webrtc": "^1.0.1",
"@geut/saga": "^1.0.0",
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"@wirelineio/automerge-worker": "^0.1.7-alpha.0",
"automerge": "^0.9.2",
"debounce": "^1.2.0",
"diff-match-patch": "^1.0.4",
"file-saver": "^2.0.1",
"husky": "^1.3.1",
"hyperdb": "^3.5.0",
"hyperid": "^2.0.1",
"immutable": "^4.0.0-rc.12",
"lint-staged": "^8.1.3",
"prettier": "^1.16.4",
"pump": "^3.0.0",
"random-access-memory": "^3.1.1",
"react": "^16.7.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.7.0",
"react-markdown": "^4.0.6",
"react-modal": "^3.8.1",
"react-offline-hoc": "^1.0.0",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.5",
"react-syntax-highlighter": "^10.2.1",
"signalhubws": "git+https://github.com/geut/signalhubws.git",
"tinydate": "^1.0.1",
"typeface-roboto": "0.0.54",
"typeface-roboto-mono": "0.0.54"
},
"peerDependencies": {
"react": "^16.7.0",
"immutable": "^4.0.0-rc.12",
"react-dom": "^16.7.0"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"version": "chan release ${npm_package_version} && git add ."
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@geut/chan": "^1.3.0",
"copy-webpack-plugin": "^5.0.2",
"react-app-rewired": "^2.1.1"
}
}