forked from dracor-org/ezlinavis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.6 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
{
"name": "ezlinavis",
"private": true,
"version": "2.2.0",
"description": "Easy Linavis - Simple Network Visualization for Literary Texts",
"author": "Carsten Milling <cmil@hashtable.de>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dlina/ezlinavis.git"
},
"dependencies": {
"nearley": "^2.8.0",
"normalize.css": "^5.0.0",
"prop-types": "^15.5.10",
"react": "^16.6.0",
"react-bootstrap": "^0.31.2",
"react-debounce-input": "^3.0.0",
"react-dom": "^16.6.0",
"react-scripts": "^5.0.1",
"react-sigma": "^1.2.17"
},
"devDependencies": {},
"scripts": {
"grammar": "nearleyc src/grammar.ne -o src/grammar.js",
"start": "PORT=8000 yarn grammar && react-scripts start",
"build": "yarn grammar && react-scripts build",
"test": "yarn grammar && react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"comma-dangle": 1,
"quotes": [1, "single"],
"no-undef": 1,
"global-strict": 0,
"no-extra-semi": 1,
"no-underscore-dangle": 0,
"no-console": 1,
"no-unused-vars": 1,
"no-trailing-spaces": [1, {"skipBlankLines": true}],
"no-unreachable": 1,
"no-alert": 0,
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}