-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.91 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
{
"name": "web",
"version": "0.1.0",
"private": true,
"engines": {
"node": "18"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --project ./tsconfig.check.json",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write ./src",
"format:check": "prettier --check ./src",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@vanilla-extract/css": "1.10.0",
"@vanilla-extract/recipes": "0.3.0",
"@vanilla-extract/sprinkles": "1.5.1",
"next": "13.2.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-transition-group": "4.4.5",
"the-new-css-reset": "1.8.4",
"type-fest": "3.7.2",
"use-debounce": "9.0.3"
},
"devDependencies": {
"@jest/globals": "29.5.0",
"@storybook/addon-essentials": "7.0.0-rc.1",
"@storybook/addon-interactions": "7.0.0-rc.1",
"@storybook/addon-links": "7.0.0-rc.1",
"@storybook/blocks": "7.0.0-rc.1",
"@storybook/nextjs": "7.0.0-rc.1",
"@storybook/react": "7.0.0-rc.1",
"@storybook/testing-library": "0.0.14-next.1",
"@tsconfig/strictest": "2.0.0",
"@types/eslint": "8.37.0",
"@types/node": "18.15.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/react-transition-group": "4.4.5",
"@vanilla-extract/jest-transform": "1.1.1",
"@vanilla-extract/next-plugin": "2.1.1",
"@vanilla-extract/webpack-plugin": "2.2.0",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-unicorn": "46.0.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"mini-css-extract-plugin": "2.7.3",
"prettier": "2.8.4",
"storybook": "7.0.0-rc.1",
"typescript": "5.0.2"
}
}