-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.64 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
{
"name": "ducky-lines",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@date-io/moment": "^2.11.0",
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.1.1",
"@mui/lab": "^5.0.0-alpha.55",
"@mui/material": "^5.2.3",
"@mui/styled-engine-sc": "^5.1.0",
"@mui/system": "^5.1.1",
"@stripe/react-stripe-js": "^1.7.0",
"@stripe/stripe-js": "^1.22.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"axios": "^0.24.0",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^6.4.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.9.29",
"nodemailer": "^6.7.2",
"nodemon": "^2.0.15",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1",
"react-scripts": "4.0.3",
"react-toastify": "^8.1.0",
"stripe": "^8.197.0",
"styled-components": "^5.3.3",
"validator": "^13.7.0"
},
"scripts": {
"start": "concurrently \"nodemon server/server.js\" \"cd client && npm run start\"",
"client": "cd client && npm start",
"server": "nodemon server/server.js",
"dev": "concurrently \"nodemon server/server.js\" \"cd client && npm run start\"",
"build": "cd client && npm build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}