-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.86 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
{
"name": "dicom-browser",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev-https": "node server.js",
"build": "next build",
"export": "next export",
"start": "next start",
"ts-check": "tsc --noEmit",
"lint-check": "eslint 'src/**/*.{ts,tsx,js,jsx}' --max-warnings 0",
"lint-fix": "eslint --fix 'src/**/*.{ts,tsx,js,jsx}'",
"format-check": "prettier --check 'src/**/*.{ts,tsx,js,jsx}'",
"format-fix": "prettier --write 'src/**/*.{ts,tsx,js,jsx}'",
"check": "npm run ts-check && npm run lint-check && npm run format-check",
"fix": "npm run lint-fix && npm run format-fix"
},
"dependencies": {
"@chakra-ui/react": "^1.6.2",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"change-case": "^4.1.2",
"clsx": "^1.1.1",
"dicom-parser": "^1.8.7",
"framer-motion": "^4.1.17",
"immer": "^9.0.2",
"konva": "^7.2.5",
"next": "^10.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-konva": "17.0.2-0",
"react-use": "^17.2.4",
"react-virtualized-auto-sizer": "^1.0.5",
"ts-pattern": "^3.1.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/react": "^17.0.3",
"@types/react-virtualized-auto-sizer": "^1.0.0",
"@types/uuid": "^8.3.0",
"@types/wicg-native-file-system": "^2020.6.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"autoprefixer": "^10.2.5",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.1.1",
"postcss": "^8.3.0",
"prettier": "2.2.1",
"tailwindcss": "^2.1.2",
"typescript": "^4.2.4"
}
}