-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.08 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
{
"name": "link-dbpedia",
"version": "0.0.1",
"author": "Fletcher91 <[email protected]>",
"license": "GPL-3.0-or-later",
"repository": "[email protected]:fletcher91/link-dbpedia.git",
"scripts": {
"start": "ts-node -P ./tsconfig.server.json server.ts",
"build": "webpack -p -c webpack.config.js",
"build:dev": "NODE_ENV=development webpack -c webpack.config.js",
"deploy": "gh-pages -d ./dist/",
"generate-barrels": "barrelsby -d src/outlines --delete -l all -i outlines",
"lint": "tslint --project tsconfig.json -c tslint.json 'src/**/*.{ts,tsx}'"
},
"dependencies": {
"@babel/core": "^7.1.5",
"@babel/runtime": "^7.1.5",
"@material-ui/core": "^3.5.1",
"@material-ui/icons": "^3.0.1",
"@types/express": "^4.16.0",
"@types/http-proxy-middleware": "^0.17.6",
"@types/node": "^10.12.7",
"@types/react": "^16.7.4",
"@types/react-redux": "^6.0.9",
"@types/react-router": "^4.4.1",
"@types/react-router-dom": "^4.3.1",
"@types/redux-actions": "^2.3.1",
"connected-react-router": "^5.0.1",
"csstype": "^2.5.7",
"express": "^4.16.4",
"history": "^4.7.2",
"http-proxy-middleware": "^0.19.0",
"http-status-codes": "^1.3.0",
"import-to-array": "^1.0.0",
"js-quantities": "^1.7.2",
"link-lib": "=1.0.0-beta27.3",
"link-redux": "=1.0.0-beta31.9",
"rdflib": "^0.19.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^5.1.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-actions": "^2.6.4",
"redux-api-middleware": "^3.0.0",
"ts-loader": "^5.3.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.6",
"typescript-debounce-decorator": "^0.0.17",
"url-template": "^2.0.8",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"whatwg-url": "^7.0.0"
},
"devDependencies": {
"@types/js-quantities": "^1.6.2",
"barrelsby": "^1.0.2",
"connect-history-api-fallback": "^1.5.0",
"gh-pages": "^2.0.1",
"redux-devtools-extension": "^2.13.5",
"tslint": "^5.11.0",
"type-zoo": "^3.2.1"
}
}