-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.99 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": "next-tailwind",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next export",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"extract": "formatjs extract"
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"clsx": "^1.1.1",
"formik": "^2.2.9",
"next": "^12.1.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "^3.38.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.17.7",
"@formatjs/cli": "^4.8.2",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.11",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^14.0.4",
"@types/node": "^17.0.23",
"@types/react": "^17.0.44",
"@types/testing-library__jest-dom": "^5.14.3",
"@types/uuid": "^8.3.4",
"@vitejs/plugin-react": "^1.2.0",
"autoprefixer": "^10.4.4",
"babel-loader": "^8.2.3",
"eslint": "^8.12.0",
"eslint-config-next": "^12.1.4",
"eslint-plugin-storybook": "^0.5.7",
"eslint-plugin-testing-library": "^5.1.0",
"jsdom": "^19.0.0",
"msw": "^0.39.2",
"postcss": "^8.4.12",
"react-intl": "^5.24.7",
"storybook-addon-next-router": "^3.1.1",
"storybook-dark-mode": "^1.0.9",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.3",
"vitest": "^0.10.0",
"webpack": "^5.70.0",
"whatwg-fetch": "^3.6.2"
}
}