-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.56 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.56 KB
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
{
"private": true,
"version": "1.0.1",
"description": "A small experiment about how we can use Linked Data thanks to SPARQL queries & visualize those data with D3",
"main": "",
"scripts": {
"clean": "rimraf dist/*",
"copy": "copyfiles -f ./src/index.html ./src/favicon.ico ./dist && copyfiles -f ./src/images/* ./dist/images",
"deploy": "npm run-script dist && surge -p dist/ -d skoli-persee-vis.surge.sh",
"dist": "npm run copy & webpack --env=dist",
"lint": "eslint ./src",
"posttest": "npm run lint",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"serve": "node server.js --env=dev",
"serve:dist": "node server.js --env=dist",
"start": "node server.js --env=dev"
},
"repository": "",
"keywords": [],
"author": "Your name here",
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-3": "^6.22.0",
"babel-runtime": "^6.23.0",
"bower-webpack-plugin": "^0.1.9",
"chai": "^3.2.0",
"copyfiles": "^1.0.0",
"css-loader": "^0.23.0",
"d3": "^4.7.0",
"es6-promisify": "^5.0.0",
"eslint": ">=4.18.2",
"eslint-loader": "^1.0.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-babel": "^4.1.0",
"eslint-plugin-react": "^6.0.0",
"file-loader": "^0.9.0",
"glob": "^7.0.0",
"isparta-instrumenter-loader": "^1.0.0",
"minimist": "^1.2.0",
"node-sass": "^4.5.0",
"null-loader": "^0.1.1",
"open": ">=6.0.0",
"phantomjs-prebuilt": "^2.0.0",
"react-addons-test-utils": "^15.0.0",
"react-async": "^2.1.0",
"react-dom": "^15.4.2",
"react-hot-loader": "^1.2.9",
"rimraf": "^2.4.3",
"rx": "^4.1.0",
"sass-loader": "^4.1.1",
"sparql": "^0.1.3",
"sparql-client": "^0.2.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"virtuoso-sparql-client": "0.0.4",
"webpack": "^1.14.0",
"webpack-dev-server": ">=3.1.11"
},
"dependencies": {
"core-js": "^2.0.0",
"d3": "^4.6.0",
"normalize.css": "^4.0.0",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"sparql-connect": "^0.1.2"
}
}