-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.56 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.56 KB
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
{
"name": "instagram-clone-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"^.+\\.(scss|less)$": "<rootDir>/config/SCSSStub.js"
}
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/material": "^5.6.2",
"@mui/styles": "^5.6.2",
"@react-spring/web": "^9.4.4",
"apollo-upload-client": "^17.0.0",
"bcrypt": "^5.0.1",
"dotenv": "^16.0.0",
"faker": "^6.6.6",
"firebase": "^9.6.11",
"formik": "^2.2.9",
"graphql": "^16.3.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"moment": "^2.29.2",
"next": "12.1.4",
"radium": "^0.26.2",
"react": "18.0.0",
"react-animations": "^1.0.0",
"react-dom": "18.0.0",
"react-dropzone": "^12.0.5",
"react-icons": "^4.3.1",
"react-intersection-observer": "^9.1.0",
"react-waypoint": "^10.1.0",
"sass": "^1.50.0",
"swr": "^1.3.0",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/preset-env": "^7.17.10",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"babel-jest": "^28.0.3",
"eslint": "8.13.0",
"eslint-config-next": "12.1.4",
"jest": "^28.0.3",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^28.0.2",
"react-test-render": "^1.1.2"
}
}