-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.32 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
52
{
"name": "ezlinavis",
"private": true,
"version": "2.3.0",
"description": "Easy Linavis - Simple Network Visualization for Literary Texts",
"author": "Carsten Milling <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dlina/ezlinavis.git"
},
"dependencies": {
"nearley": "^2.20.1",
"normalize.css": "^5.0.0",
"prop-types": "^15.5.10",
"react": "^16.6.0",
"react-bootstrap": "^0.31.2",
"react-debounce-input": "^3.3.0",
"react-dom": "^16.6.0",
"react-sigma": "^1.2.17"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"prettier": "^3.3.3",
"vite": "^5.4.2"
},
"scripts": {
"grammar": "nearleyc src/grammar.ne -o src/grammar.js",
"dev": "yarn grammar && vite",
"build": "yarn grammar && vite build",
"start": "yarn dev",
"lint": "eslint src",
"preview": "yarn grammar && vite preview"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}