-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.93 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": "manufacturate",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"analyze": "cross-env ANALYZE=true yarn build"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.0",
"@chakra-ui/react": "^1.0.0",
"@chakra-ui/theme-tools": "1.0.0",
"@emotion/react": "11.1.1",
"@emotion/styled": "11.0.0",
"bcryptjs": "^2.4.3",
"chakra-ui-markdown-renderer": "^1.1.0",
"cross-env": "^7.0.3",
"framer-motion": "^2.9.4",
"lodash": "^4.17.21",
"mongodb": "^3.6.4",
"next": "^10.2.0",
"next-auth": "^3.13.1",
"node-fetch": "^2.6.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^6.15.5",
"react-markdown": "^5.0.3",
"react-simplemde-editor": "^4.1.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.1.3",
"@testing-library/dom": "^7.29.6",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.1.0",
"@types/bcrypt": "^3.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/mongodb": "^3.6.10",
"@types/next": "^9.0.0",
"@types/node": "^14.6.0",
"@types/node-fetch": "^2.5.10",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/parser": "^4.15.0",
"babel-jest": "^26.6.3",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-typescript-prettier": "^4.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-typescript-sort-keys": "^1.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "4.0.5"
},
"license": "MIT",
"sideEffects": [
"./src/api/db/*"
]
}