-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "DSD-Editor",
"version": "0.1.0",
"description": "Web application to manage RDF Data Structure Definition",
"repository": {
"type": "git",
"url": "https://github.com/LOS-ESSnet/DSD-Editor"
},
"author": "LOS-ESSnet",
"contributor": [
{
"name": "Nicolas Laval",
"email": "[email protected]"
}
],
"license": "MIT",
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "cross-env NODE_PATH=src/ react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "cross-env NODE_PATH=src/ react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"file-saver": "^1.3.8",
"lodash.deburr": "^4.1.0",
"n3": "^1.0.0-beta.1",
"react": "^16.4.2",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.4.2",
"react-loading": "^2.0.3",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4",
"react-select": "^2.0.0",
"sass": "^1.32.5"
},
"devDependencies": {
"cross-env": "^5.2.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^2.1.0",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.0"
}
}