-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.37 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.37 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
{
"name": "SPARQL-Inside",
"version": "0.0.1",
"description": "SPARQL Tutorial for the Paris Hackathon",
"author": "LOS-ESSnet",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LOS-ESSnet/SPARQL-Inside.git"
},
"homepage": "http://www.linked-open-statistics.org/plosh/sparql-inside/",
"dependencies": {
"babel-polyfill": "^6.26.0",
"material-ui": "^0.20.0",
"material-ui-datatables": "^0.18.2",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-highlight": "^0.12.0",
"react-loading": "^2.0.3",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.4",
"react-tap-event-plugin": "^3.0.2"
},
"scripts": {
"start": "cross-env NODE_PATH=src/ react-scripts start",
"build": "cross-env NODE_PATH=src/ react-scripts build",
"test": "cross-env NODE_PATH=src/ react-scripts test --env=jsdom",
"build-test": "yarn test --coverage",
"eject": "react-scripts eject",
"start-storybook": "cross-env NODE_PATH=src/ start-storybook -p 9999",
"build-storybook": "cross-env NODE_PATH=src/ build-storybook -o built-storybook/storybook"
},
"devDependencies": {
"cross-env": "^5.1.4",
"eslint-config-prettier": "^3.0.1",
"eslint-config-react-app": "^2.1.0",
"prettier": "^1.13.5"
},
"prettier": {
"singleQuote": true,
"semi": true,
"useTabs": true,
"bracketSpacing": true,
"trailingComma": "es5"
}
}