-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.79 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.79 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
65
66
{
"name": "itk-viewer-bootstrap-ui",
"version": "0.0.0-development",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"prettier": "prettier --config ./.prettierrc.json --write ./src/**/*.{js,jsx}",
"postversion": "npm publish && git push --follow-tags",
"lint": "eslint . --ext .js,.jsx",
"semantic-release": "semantic-release --branches main",
"commit": "git-cz"
},
"keywords": [
"react",
"bootstrap-ui",
"ui",
"itk-viewer"
],
"dependencies": {
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@xstate/react": "^1.6.1",
"bootstrap": "^4.6.0",
"classnames": "^2.3.1",
"husky": "^7.0.4",
"itk-viewer-color-maps": "^1.2.0",
"@itk-viewer/icons": "^11.14.1",
"itk-viewer-transfer-function-editor": "^1.6.0",
"prettier": "^2.5.0",
"pydata_sphinx_theme": "github:pydata/pydata-sphinx-theme#2d9c495",
"react": "^17.0.0",
"react-bootstrap": "^1.6.5",
"react-dom": "^17.0.0",
"vite-plugin-css-injected-by-js": "^1.5.1",
"xstate": "^4.23.4"
},
"devDependencies": {
"@vitejs/plugin-react-refresh": "^1.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"sass": "~1.32.0",
"semantic-release": "^19.0.3",
"vite": "^2.4.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": "prettier --config ./.prettierrc.json --write"
},
"repository": {
"type": "git",
"url": "https://github.com/InsightSoftwareConsortium/itk-viewer-bootstrap-ui.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}