-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
39 lines (39 loc) · 1000 Bytes
/
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
{
"name": "json-viewer",
"version": "0.1.0",
"private": true,
"homepage": "https://jsonviewer.arianv.com",
"dependencies": {
"d3-state-visualizer": "^1.3.1",
"gh-pages": "^1.0.0",
"jsonlint": "https://github.com/josdejong/jsonlint.git#85a19d7",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-codemirror2": "^0.0.13",
"react-dom": "^15.6.1",
"react-json-tree": "^0.10.9",
"react-scripts": "1.0.11",
"standard": "^10.0.3",
"styled-components": "^2.1.2"
},
"standard": {
"env": [
"jest",
"jasmine"
],
"globals": [
"fetch",
"URL"
]
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "./node_modules/.bin/standard --parser babel-eslint",
"lint:fix": "./node_modules/.bin/standard --fix",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}