forked from kbss-cvut/record-manager-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.38 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "record-manager",
"version": "0.2.3",
"description": "Record Manager UI",
"homepage": ".",
"type": "module",
"main": "src/index.jsx",
"dependencies": {
"@kbss-cvut/s-forms": "0.7.1-beta-82d34b0.0",
"@vitejs/plugin-react": "^4.2.1",
"axios": "^0.21.1",
"bootstrap": "^4.4.1",
"bowser": "^2.9.0",
"classnames": "^2.3.1",
"history": "^4.10.1",
"intelligent-tree-select": "^0.11.3",
"jsonld-utils": "https://kbss.felk.cvut.cz/dist/jsonld-utils-0.1.2.tgz",
"lodash": "^4.17.15",
"oidc-client": "^1.11.5",
"parse-link-header": "2.0.0",
"platform": "^1.3.5",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-authorization": "^0.4.1",
"react-bootstrap": "1.6.8",
"react-datepicker": "^4.14.1",
"react-dom": "^18.2.0",
"react-dropzone": "11.4.2",
"react-icons": "^4.2.0",
"react-intl": "^5.18.1",
"react-promise-tracker": "^2.1.1",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"redux": "^4.1.0",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"url-parse": "^1.5.10",
"vite": "^5.1.4",
"vite-plugin-eslint": "^1.8.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-react": "^7.23.3",
"axios-mock-adapter": "^1.18.1",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"dotenv": "^8.2.0",
"dotenv-safe": "^8.2.0",
"enzyme": "^3.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"prettier": "3.2.5",
"querystring-es3": "^0.2.1",
"redux-mock-store": "^1.5.4",
"vitest": "^1.4.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prettier:check": "npx prettier --check .",
"prettier:format": "npx prettier --write .",
"prepare": "husky",
"test": "vitest",
"validate": "npm-run-all --parallel lint build test",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"author": "Miroslav Blaško",
"contributors": [
"Martin Ledvinka"
],
"repository": {
"type": "git",
"url": "https://kbss.felk.cvut.cz/git/saving-study.git"
},
"private": true,
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}