-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.28 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
{
"name": "portal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 4200",
"start-server": "ts-node --project server/tsconfig.server.json server/index.ts",
"build": "next build",
"start": "next start -p 4200",
"lint": "next lint",
"check-types": "tsc --pretty",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test": "jest --watch --verbose --silent",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"prepare": "husky install",
"reinstall-ui-lib": "yarn remove @taraldefi/tariala-component-library && yarn add @taraldefi/tariala-component-library@latest"
},
"husky": {
"hooks": {
"pre-commit": "sh hooks/pre-commit"
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@react-pdf-viewer/core": "^3.6.0",
"@react-pdf-viewer/default-layout": "^3.6.0",
"@react-pdf-viewer/thumbnail": "^3.6.0",
"@react-pdf-viewer/zoom": "^3.6.0",
"@taraldefi/tariala-component-library": "^1.21.0",
"axios": "^0.27.2",
"cors": "^2.8.5",
"express": "^4.18.1",
"jotai": "^2.0.4",
"next": "13.2.4",
"pdfjs-dist": "^2.14.305",
"react": "18.2.0",
"react-dom": "18.1.0",
"react-feather": "^2.0.10",
"react-hook-form": "^7.33.1",
"react-icons": "^4.4.0",
"react-pdf-thumbnail": "^0.1.0",
"react-pro-sidebar": "^0.7.1",
"react-router-dom": "^6.3.0",
"sass": "^1.52.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^29.5.1",
"@types/next": "^9.0.0",
"@types/node": "^17.0.42",
"@types/react": "^18.2.16",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.26",
"eslint": "8.17.0",
"eslint-config-next": "12.1.6",
"husky": "^8.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.7.1",
"typescript": "^4.7.3"
}
}