This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·69 lines (69 loc) · 2.01 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
{
"name": "openpharma-viewer",
"version": "1.0.1",
"description": "Compare prices for pharmaceuticals",
"main": "index.js",
"author": "Joep Meindertsm <joep@ontola.io>",
"license": "GPL-3.0-or-later",
"private": false,
"applicationURL": {
"development": "http://localhost:9000/",
"production": "https://openpharma.eu"
},
"scripts": {
"build": "yarn build:bundle && yarn build:extension",
"build:bundle": "webpack",
"build:extension": "webpack --config webpack.umd.config.js",
"deploy": "gh-pages -d ./dist",
"dev": "webpack-dev-server --hot"
},
"dependencies": {
"//": "=1.0.0-rc4.5",
"@babel/runtime": "^7.6.2",
"@material-ui/core": "^4.3.2",
"@material-ui/icons": "^4.2.1",
"@material-ui/styles": "^4.3.0",
"chart.js": "^2.8.0",
"classnames": "^2.2.6",
"clsx": "^1.0.4",
"director": "^1.2.8",
"http-status-codes": "^1.3.0",
"link-lib": "=1.0.0-rc2-solid",
"link-rdflib": "npm:link-rdflib@0.19.1-20190124T144209",
"link-redux": "=1.0.0-rc2",
"rdflib": "npm:link-rdflib@0.19.1-20190124T144209",
"react": "^16.9.0",
"react-chartjs-2": "^2.8.0",
"react-dom": "^16.9.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^4.5.4",
"gh-pages": "^2.0.1",
"jest": "^24.9.0",
"solid-auth-client": "^2.3.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.8.2"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"globals": {
"FRONTEND_ROUTE": true
}
}
}