-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·98 lines (98 loc) · 3.26 KB
/
package.json
File metadata and controls
executable file
·98 lines (98 loc) · 3.26 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "frontend-chat",
"version": "0.1.0",
"private": true,
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "next build",
"start": "next start",
"dev": "next dev -p 3000",
"build:start": "next build && next start",
"docker:start": "docker-compose up",
"docker:build": "docker build --no-cache -t eu-automatizei .",
"docker:build:test": "if docker images -q eu-automatizei:latest 2> /dev/null; then npm run docker:clean:test; fi && npm run docker:build && docker run -d -p 3000:3000 --name eu-automatizei eu-automatizei",
"docker:clean:test": "if docker ps -a --format '{{.Names}}' | grep -q '^eu-automatizei$'; then docker stop eu-automatizei && docker rm eu-automatizei; fi && docker rmi -f eu-automatizei",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest --watch",
"test:ci": "jest --ci --coverage",
"commit": "git add . && git cz && git push",
"install:ci": "yarn install --frozen-lockfile"
},
"dependencies": {
"@bbbtech/storybook-formik": "^3.0.0",
"@casl/ability": "^6.5.0",
"@casl/react": "^3.1.0",
"@material-tailwind/react": "^2.1.2",
"autoprefixer": "^10.4.16",
"axios": "^1.5.0",
"eslint": "^8.50.0",
"eslint-config-next": "13.5.2",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-unused-imports": "^3.0.0",
"formik": "^2.4.5",
"jest": "^29.3.1",
"jwt-decode": "^3.1.2",
"next": "13.5.2",
"nookies": "^2.5.2",
"postcss": "8.4.30",
"pure-react-carousel": "^1.30.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.12.0",
"react-toastify": "^9.1.3",
"socket.io-client": "^4.7.2",
"storybook-formik": "^2.4.2",
"styled-components": "^6.1.6",
"tailwind-merge": "^1.14.0",
"tailwind-styled-components": "^2.2.0",
"tailwindcss": "^3.3.3",
"typescript": "5.2.2",
"yarn": "^1.22.21",
"yup": "^1.2.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.4.5",
"@storybook/addon-interactions": "^7.4.5",
"@storybook/addon-links": "^7.4.5",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.4.5",
"@storybook/nextjs": "^7.4.5",
"@storybook/react": "^7.4.5",
"@storybook/testing-library": "^0.2.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/node": "20.6.3",
"@types/react": "18.2.22",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"babel-jest": "^29.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-storybook": "^0.6.14",
"eslint-plugin-testing-library": "5.7.3",
"jest-environment-jsdom": "29.2.1",
"msw": "^1.3.2",
"msw-storybook-addon": "^1.8.0",
"prettier": "^3.0.3",
"storybook": "^7.4.5",
"ts-jest": "^29.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"msw": {
"workerDirectory": "public"
}
}