-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.13 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
{
"name": "todoapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"chromatic": "npx chromatic --exit-zero-on-changes"
},
"dependencies": {
"@next-auth/mongodb-adapter": "^1.1.1",
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-alert-dialog": "^1.0.2",
"@radix-ui/react-checkbox": "^1.0.1",
"@radix-ui/react-context-menu": "^2.0.1",
"@radix-ui/react-dialog": "^1.0.0",
"@radix-ui/react-icons": "^1.1.1",
"@radix-ui/react-label": "^2.0.0",
"@radix-ui/react-select": "^1.1.2",
"@radix-ui/react-separator": "^1.0.1",
"@stitches/react": "^1.2.8",
"axios": "^1.1.2",
"dayjs": "^1.11.7",
"mongodb": "^4.11.0",
"next": "12.3.1",
"next-auth": "^4.15.0",
"nodemailer": "^6.8.0",
"ramda": "^0.28.0",
"react": "18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "18.2.0",
"recoil": "^0.7.6"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@types/node": "18.11.19",
"@types/ramda": "^0.28.20",
"@types/react": "18.0.26",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "18.0.10",
"babel-loader": "^9.1.0",
"chromatic": "^6.11.4",
"eslint": "8.32.0",
"eslint-config-next": "13.0.5",
"eslint-plugin-storybook": "^0.6.10",
"husky": ">=8",
"lint-staged": ">=10",
"prettier": "^2.8.0",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "4.9.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --cache --fix"
]
},
"readme": "ERROR: No README data found!",
"_id": "[email protected]"
}