-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.34 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "yarn build-storybook && next build",
"start": "next start",
"lint": "next lint",
"storybook": "start-storybook -p 3001 --quiet",
"build-storybook": "build-storybook -o public/components",
"test": "jest --coverage",
"generate": "plop --plopfile ./lib/generators/index.js"
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@next-auth/mongodb-adapter": "1.0.3",
"@radix-ui/react-checkbox": "^0.1.5",
"@radix-ui/react-dialog": "^0.1.7",
"@typegoose/typegoose": "^9.7.0",
"@types/bcrypt": "^5.0.0",
"apollo-server-micro": "^3.6.3",
"bcrypt": "^5.0.1",
"class-validator": "^0.13.2",
"cross-fetch": "^3.1.5",
"dayjs": "^1.11.0",
"graphql": "^15.3.0",
"graphql-tools": "^8.2.0",
"jsonwebtoken": "^8.5.1",
"material-icons": "^1.10.8",
"micro": "^9.3.4",
"mongodb": "^4.4.1",
"mongoose": "^6.2.6",
"next": "12",
"next-auth": "^4.3.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"reflect-metadata": "^0.1.13",
"slate": "^0.76.0",
"slate-react": "^0.76.0",
"styled-components": "^5.3.3",
"type-graphql": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.17.2",
"@storybook/addon-actions": "^6.4.20",
"@storybook/addon-essentials": "^6.4.20",
"@storybook/addon-interactions": "^6.4.20",
"@storybook/addon-links": "^6.4.20",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.4.20",
"@storybook/testing-library": "^0.0.9",
"@svgr/webpack": "^6.2.1",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@types/node": "^17.0.29",
"@types/react": "18.0.1",
"@types/styled-components": "^5.1.25",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.3",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-styled-components": "^2.0.6",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"eslint-plugin-storybook": "^0.5.7",
"jest": "^27.5.1",
"jest-styled-components": "^7.0.8",
"plop": "^3.0.5",
"postcss": "^8",
"typescript": "4.6.2"
}
}