forked from OmarAlareeki/post-it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.17 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
76
{
"name": "fixit",
"private": true,
"jest": {
"verbose": true,
"transform": {
"^.+\\.(js|jsx)$": "babel-jest"
},
"moduleNameMapper": {
"\\.,(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"testEnvironment": "jsdom"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@emotion/cache": "latest",
"@emotion/react": "^11.7.1",
"@emotion/server": "latest",
"@emotion/styled": "^11.6.0",
"@material-ui/core": "^5.0.0-beta.5",
"@material-ui/styles": "^4.11.4",
"@mui/icons-material": "^5.4.1",
"@mui/material": "latest",
"@tinymce/tinymce-react": "^3.13.0",
"bootstrap": "^5.1.3",
"css-loader": "^6.5.1",
"dangerously-set-inner-html": "^2.0.1",
"firebase": "^9.6.3",
"firebase-admin": "^10.0.2",
"https": "^1.0.0",
"identity-obj-proxy": "^3.0.0",
"install": "^0.13.0",
"leaflet": "^1.7.1",
"lodash.uniqueid": "^4.0.1",
"moment": "^2.29.1",
"next": "^12.0.9",
"nookies": "^2.5.2",
"prop-types": "^15.8.1",
"react": "17.0.2",
"react-bootstrap": "^2.1.0",
"react-currency-input-field": "^3.6.0",
"react-dom": "17.0.2",
"react-google-button": "^0.7.2",
"react-icons": "^4.3.1",
"react-leaflet": "^3.2.5",
"react-loader-spinner": "^5.1.0",
"react-lodash": "^0.1.2",
"react-number-format": "^4.9.1",
"styled-components": "^5.3.3",
"swr": "^1.1.2",
"zipcodes": "^8.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"babel-jest": "^26.3.0",
"babel-preset-jest": "^27.5.1",
"eslint": "8.5.0",
"eslint-config-next": "12.0.7",
"fs": "^0.0.1-security",
"jest": "^27.5.1",
"jest-mock-extended": "^2.0.4",
"react-phone-number-input": "^3.1.44"
}
}