-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.62 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
{
"name": "link-redux-todomvc",
"version": "1.0.0",
"description": "A todo-app in link-redux",
"main": "index.js",
"author": "Fletche91 <[email protected]>",
"license": "GPL-3.0-or-later",
"private": false,
"scripts": {
"build": "NODE_ENV=production webpack -p",
"build:dev": "webpack",
"deploy": "gh-pages -d ./dist"
},
"dependencies": {
"@ontola/link-devtools": "^2.0.2",
"@ontologies/core": "^2.0.2",
"@ontologies/ld": "^1.0.0",
"@ontologies/owl": "^1.0.0",
"@ontologies/rdf": "^1.0.0",
"@ontologies/rdfs": "^1.0.0",
"@ontologies/schema": "^1.0.0",
"@ontologies/shacl": "^1.0.0",
"@ontologies/xsd": "^1.0.0",
"@rdfdev/iri": "^1.0.0",
"classnames": "^2.2.6",
"director": "^1.2.8",
"hoist-non-react-statics": "^3.3.2",
"http-status-codes": "^1.3.0",
"link-lib": "^2.0.1",
"link-redux": "2.1.1",
"n-quads-parser": "^2.1.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"todomvc-app-css": "^2.1.2",
"todomvc-common": "^1.0.5",
"url-template": "^2.0.8"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.4.4",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^4.5.4",
"gh-pages": "^2.0.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"globals": {
"FRONTEND_ROUTE": true
}
}
}