-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.54 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
{
"name": "recipes-app",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=16.15.0",
"npm": ">=8.1.0"
},
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"cy:run": "cypress run",
"cy:open": "cypress open",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"compile:sass": "sass --watch src/sass/main.scss src/style/style.css",
"lint:scripts": "eslint --ext .ts,.tsx src",
"lint:scss": "stylelint \"src/**/*.scss\"",
"lint:styles": "stylelint \"src/**/*.css\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install"
},
"dependencies": {
"@fontsource/nunito-sans": "^4.5.9",
"@types/validator": "^13.7.6",
"clipboard-copy": "^4.0.1",
"framer-motion": "^7.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-router-dom": "^6.3.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-vite": "^0.2.2",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@testing-library/cypress": "^8.0.3",
"@testing-library/dom": "^8.17.1",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"@vitejs/plugin-react": "^2.0.1",
"babel-loader": "^8.2.5",
"chromatic": "^6.9.0",
"cypress": "^10.7.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-testing-library": "^5.6.4",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"prettier": "^2.7.1",
"sass": "^1.54.7",
"semantic-release": "^19.0.5",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"typescript": "^4.8.2",
"vite": "^3.0.7",
"vitest": "^0.23.2"
}
}