forked from gritzko/swarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.13 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
{
"private": true,
"version": "2.0.0",
"name": "swarm",
"homepage": "http://github.com/gritzko/swarm",
"repository": {
"type": "git",
"url": "https://github.com/gritzko/swarm.git"
},
"author": {
"email": "[email protected]",
"name": "Victor Grishchenko"
},
"contributors": [
{
"name": "Aleksei Balandin",
"email": "[email protected]"
},
{
"name": "Andrey Popp",
"email": "[email protected]"
},
{
"name": "Oleg Lebedev",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-plugin-transform-class-bound-properties": "^1.0.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-node-env-inline": "^0.3.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.14.0",
"eslint-plugin-flowtype": "^2.40.1",
"flow-bin": "0.66.0",
"flow-copy-source": "^1.2.2",
"flow-coverage-report": "^0.4.1",
"jest": "22.0.3",
"lerna": "^2.5.1",
"rimraf": "^2.6.2"
},
"workspaces": [
"packages/api",
"packages/client",
"packages/clock",
"packages/db",
"packages/rdt",
"packages/react",
"packages/regular-grammar",
"packages/ron-grammar",
"packages/ron-uuid",
"packages/ron"
],
"scripts": {
"test": "jest",
"build": "lerna run build",
"build:clean": "lerna run build:clean",
"build:lib": "lerna run build:lib",
"build:flow": "lerna run build:flow",
"coverage": "flow-coverage-report -o coverage -i 'packages/*/src/**/*.js' -x 'packages/client/src/asyncStorage.js' -t html -t json -t text --threshold 90 && open ./coverage/index.html",
"postinstall": "yarn build"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/playground/"
]
},
"dependencies": {
"graphql": "0.13.1",
"graphql-anywhere": "4.1.5",
"graphql-tag": "2.8.0",
"invariant": "2.2.2",
"prop-types": "15.6.0",
"react": "16.2.0",
"react-dom": "16.2.0"
}
}