-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 2.45 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
{
"name": "cook-it",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"aos": "^2.3.4",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"emailjs-com": "^3.2.0",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mongoose": "^6.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-markdown": "^8.0.3",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"remark-gfm": "^3.0.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "node server.mjs",
"react": "react-scripts start",
"server": "nodemon server.mjs",
"sass": "sass src/style.scss:src/style.css src/components/Button/button.scss:src/components/Button/button.css src/components/Navigation/navigation.scss:src/components/Navigation/navigation.css src/components/Footer/footer.scss:src/components/Footer/footer.css src/components/Recipe/recipe.scss:src/components/Recipe/recipe.css src/components/Input/input.scss:src/components/Input/input.css src/components/Header/header.scss:src/components/Header/header.css src/pages/Home/home.scss:src/pages/Home/home.css src/pages/About/about.scss:src/pages/About/about.css src/pages/Write/write.scss:src/pages/Write/write.css src/pages/Contact/contact.scss:src/pages/Contact/contact.css src/pages/Recipe/recipe.scss:src/pages/Recipe/recipe.css src/pages/Search/search.scss:src/pages/Search/search.css src/pages/Profile/profile.scss:src/pages/Profile/profile.css src/pages/Saved/saved.scss:src/pages/Saved/saved.css src/pages/Login/login.scss:src/pages/Login/login.css src/pages/Register/register.scss:src/pages/Register/register.css src/pages/NotFound/not-found.scss:src/pages/NotFound/not-found.css -w",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install && npm run build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"nodemon": "^2.0.19",
"sass": "^1.54.9"
}
}