-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.76 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
53
54
55
56
57
58
59
60
{
"name": "fsh-online",
"version": "1.0.0",
"private": true,
"license": "Apache-2.0",
"dependencies": {
"@material-ui/core": "^4.10.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"browserify-zlib": "^0.2.0",
"codemirror": "^5.65.18",
"file-saver": "^2.0.5",
"fsh-sushi": "^3.12.0",
"gofsh": "^2.3.1",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-codemirror2": "^7.3.0",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.27.0",
"tar-stream": "^3.1.7"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-react": "^7.25.9",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^12.1.0",
"@testing-library/user-event": "^14.5.2",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"fake-indexeddb": "^6.0.0",
"jsdom": "^25.0.1",
"nock": "^13.5.5",
"prettier": "^3.3.3",
"vite": "^5.4.3",
"vite-plugin-node-polyfills": "^0.22.0",
"vitest": "^2.1.4"
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint \"./src/**/*.{js,jsx}\"",
"lint-fix": "eslint \"./src/**/*.{js,jsx}\" --fix",
"prettier": "prettier --check \"**/*.{js,ts,jsx,tsx}\"",
"prettier-fix": "prettier --write \"**/*.{js,ts,jsx,tsx}\"",
"test": "vitest",
"check": "vitest --run && npm run lint && npm run prettier"
},
"browserslist": [
"defaults"
]
}