-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.04 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
{
"name": "ontohub-frontend",
"version": "0.1.0",
"ontohub": {
"backendVersion": "> 0.0.0-90"
},
"private": true,
"license": "AGPL-3.0",
"dependencies": {
"apollo-cache-inmemory": "^1.2.5",
"apollo-client": "^2.3.4",
"apollo-link-batch-http": "^1.2.1",
"apollo-link-error": "^1.1.0",
"b64-to-blob": "^1.2.19",
"debounce-promise": "^3.1.0",
"file-saver": "^1.3.3",
"formik": "^0.11.11",
"github-markdown-css": "^2.10.0",
"graphql": "0.13.2",
"graphql-tag": "^2.9.1",
"highlight.js": "^9.12.0",
"lodash": "^4.17.11",
"mime-types": "^2.1.17",
"react": "^16.3.2",
"react-ace": "^6.1.1",
"react-apollo": "^2.1.7",
"react-async-script": "^0.9.1",
"react-css-transition-replace": "^3.0.3",
"react-dom": "^16.3.1",
"react-google-recaptcha": "^0.12.0",
"react-gravatar": "^2.6.3",
"react-height": "^3.0.0",
"react-lowlight": "^2.0.0",
"react-markdown": "^3.3.2",
"react-pdf-js": "^3.0.8",
"react-router-dom": "^4.2.2",
"recompose": "^0.27.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.80.0",
"semver": "^5.5.0",
"styled-components": "^3.2.5",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"codecov": "^3.0.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.19.1",
"faker": "^4.1.0",
"graphql-tools": "^3.0.0",
"jest-plugin-set": "^2.8.0",
"jest-styled-components": "^5.0.1",
"prettier": "1.12.1",
"react-scripts": "1.1.4",
"react-test-renderer": "^16.3.1",
"serve": "^8.2.0",
"stampit": "^4.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"format": "prettier --write \"src/**/*.js\"",
"eject": "react-scripts eject",
"serve-built": "serve build -p $PORT"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/*.js",
"!src/config/**/*.js",
"!src/lib/test-helpers/**/*.js"
]
}
}