-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.33 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
{
"name": "regexp_visualizer",
"version": "1.0.2",
"description": "Regular expression parser/tester with finite automaton visualization.",
"homepage": "https://meitinger.github.io/RegexpVisualizer/",
"source": "index.html",
"browserslist": "> 0.5%, last 2 versions, not dead",
"dependencies": {
"parsimmon": "^1.18.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"refa": "^0.10.0",
"uikit": "^3.14.0",
"viz.js": "^2.1.2"
},
"devDependencies": {
"@types/parsimmon": "^1.10.6",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/uikit": "^3.3.2",
"@types/viz.js": "^2.1.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"typescript": "^4.6.4",
"vite": "^2.9.7"
},
"scripts": {
"build": "vite build --base=/RegexpVisualizer/",
"dev": "vite",
"test": "eslint ./src --ext .ts,.tsx"
}
}