-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.76 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "frontend",
"version": "1.8.3",
"description": "Frontend annotation platform for GeoImageNet",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"prod": "webpack --config webpack.prod.js && npm run esdoc",
"dev": "webpack --config webpack.dev.js --progress && npm run esdoc",
"dev:watch": "webpack --watch --progress --config webpack.dev.js",
"dev-server": "webpack-dev-server --config webpack.dev.js",
"esdoc": "./node_modules/.bin/esdoc",
"flow": "flow",
"flow:deps": "flow-typed install && flow-typed create-stub graphql-tag mobx react-apollo apollo-utilities",
"postinstall": "npm run flow:deps"
},
"repository": {
"type": "git",
"url": "https://felix.gagnon-grenier%[email protected]/stash/scm/geo/frontend.git"
},
"author": "Félix Gagnon-Grenier",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.10.4",
"@babel/preset-react": "^7.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.15",
"@hot-loader/react-dom": "^16.10.2",
"apollo": "^2.9.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"esdoc": "^1.1.0",
"esdoc-coverage-plugin": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-flow-type-plugin": "^1.1.0",
"esdoc-jsx-plugin": "^1.0.0",
"esdoc-react-plugin": "^1.0.1",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-graphql": "^3.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.3.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"fetch-mock": "^7.3.3",
"file-loader": "^2.0.0",
"flow-bin": "^0.104.0",
"flow-typed": "^2.6.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.1.0",
"jest-dom": "^3.1.4",
"jest-environment-enzyme": "^7.0.2",
"jest-enzyme": "^7.0.2",
"jsdom": "^15.1.1",
"prop-types": "^15.7.2",
"react-hot-loader": "^4.12.15",
"react-testing-library": "^7.0.0",
"style-loader": "^0.23.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.7",
"@material-ui/core": "^4.5.0",
"@material-ui/icons": "^4.4.3",
"@reach/router": "^1.3.4",
"@sentry/browser": "^4.6.4",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.6.3",
"apollo-link": "^1.2.12",
"apollo-link-error": "^1.1.11",
"apollo-link-http": "^1.5.14",
"apollo-link-ws": "^1.0.17",
"apollo-upload-client": "^10.0.1",
"apollo-utilities": "^1.3.1",
"date-fns": "^2.0.0-alpha.27",
"emotion": "^10.0.9",
"graphql": "^14.2.1",
"graphql-tag": "^2.10.1",
"i18next": "^17.0.3",
"i18next-browser-languagedetector": "^3.0.1",
"material-table": "^1.38.0",
"mobx": "^5.9.0",
"mobx-react": "^5.4.3",
"ol": "^5.3.0",
"polished": "^3.2.0",
"react": "^16.8.6",
"react-apollo": "^2.5.8",
"react-dom": "^16.8.6",
"react-emotion": "^10.0.0",
"react-i18next": "^10.11.0",
"react-notifications": "^1.6.0",
"react-router-dom": "^5.1.2",
"subscriptions-transport-ws": "^0.9.16",
"webpack": "^4.41.2",
"webpack-merge": "^4.2.2"
}
}