-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.9 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
{
"name": "warehouse-client",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": "Victor Monserrat",
"scripts": {
"build": "next build",
"build-storybook": "build-storybook",
"coverage": "jest --coverage .",
"dev": "next dev",
"format": "prettier --write .",
"lint": "next lint",
"prepare": "husky install",
"start": "next start",
"storybook": "start-storybook -p 6006",
"test": "jest --watch"
},
"dependencies": {
"formik": "2.2.9",
"next": "12.1.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"sharp": "^0.30.4",
"styled-components": "5.3.5",
"styled-reset": "4.3.4",
"swr": "1.2.2",
"yup": "0.32.11"
},
"devDependencies": {
"@babel/core": "7.17.8",
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@storybook/addon-a11y": "6.4.20",
"@storybook/addon-actions": "6.4.20",
"@storybook/addon-essentials": "6.4.20",
"@storybook/addon-links": "6.4.20",
"@storybook/react": "6.4.20",
"@testing-library/jest-dom": "5.16.3",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.4.1",
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@types/styled-components": "5.1.24",
"@typescript-eslint/eslint-plugin": "5.17.0",
"babel-loader": "8.2.4",
"eslint": "8.12.0",
"eslint-config-next": "12.1.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-sort": "2.4.0",
"eslint-plugin-storybook": "0.5.7",
"husky": "7.0.4",
"jest": "27.5.1",
"jest-cucumber": "3.0.1",
"lint-staged": "12.3.7",
"msw": "0.39.2",
"prettier": "2.6.1",
"ts-jest": "27.1.4",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.6.3",
"uuid": "8.3.2",
"whatwg-fetch": "3.6.2"
}
}