-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "eventcalendar-react-ts",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon app/server.js",
"build": "next build",
"start": "NODE_ENV=production node app/server.js",
"test": "jest --no-cache --config jest/config.js"
},
"dependencies": {
"@testing-library/user-event": "^13.1.5",
"@zeit/next-css": "^1.0.1",
"classnames": "^2.3.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"moment": "^2.29.1",
"mongoose": "^5.12.5",
"msw": "^0.28.2",
"next": "10.1.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-popover": "^0.5.10",
"react-redux": "^7.2.3",
"react-toastify": "^7.0.4",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"sass": "^1.32.11",
"serverless-http": "^2.7.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@testing-library/dom": "^7.30.4",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@types/node": "^14.14.41",
"@types/react": "^17.0.3",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"jest-dom": "^4.0.0",
"nodemon": "^2.0.7",
"typescript": "^4.2.4",
"webpack": "^5.35.1"
}
}