-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 3.3 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "tsbank_front",
"version": "1.0.0",
"description": "Front-end do TSBank.",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"preview": "vite preview",
"build-storybook": "storybook build",
"storybook": "storybook dev -p 6006",
"vitest": "vitest",
"docker-build": "docker build -t tsbank_front .",
"docker-start": "docker run --name tsbank_front -p 3000:3000 tsbank_front || docker start tsbank_front",
"docker-stop": "docker stop tsbank_front",
"docker-test": "docker run --rm --name tsbank_front_tests -it tsbank_front bun vitest",
"docker-stb": "docker run --rm --name tsbank_front_stb -p 6006:6006 -it tsbank_front bun storybook"
},
"keywords": [
"bun",
"react",
"vite",
"html",
"tailwind",
"typescript",
"eslint",
"prettier",
"postcss",
"node",
"dotenv",
"stylelint",
"sass",
"ts-node",
"crypto-js",
"axios",
"zod",
"storybook",
"react-router-dom",
"react-hook-form",
"react-icons",
"parrotenv",
"tsbank"
],
"author": "Victor José Lopes Navarro",
"license": "MIT",
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@types/crypto-js": "^4.2.1",
"@types/styled-components": "^5.1.34",
"axios": "^1.6.5",
"crypto-js": "^4.2.0",
"parrotenv": "^1.7.0",
"postcss": "^8.4.33",
"postcss-import": "^15.1.0",
"postcss-scss": "^4.0.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.3",
"react-icons": "^4.12.0",
"react-query": "^3.39.3",
"react-router-dom": "^6.21.3",
"sass": "^1.70.0",
"styled-components": "^6.1.8",
"tailwindcss-animated": "^1.0.1",
"ts-node": "^10.9.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.15",
"@storybook/addon-interactions": "^7.6.15",
"@storybook/addon-links": "^7.6.15",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.15",
"@storybook/manager-api": "^7.6.15",
"@storybook/react": "^7.6.15",
"@storybook/react-vite": "^7.6.15",
"@storybook/test": "^7.6.15",
"@storybook/theming": "^7.6.15",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-storybook": "^0.6.15",
"jest": "^29.7.0",
"jsdom": "^23.2.0",
"prettier": "^3.2.4",
"storybook": "^7.6.15",
"storybook-addon-react-router-v6": "^2.0.10",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.4",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.1"
}
}