-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
62 lines (62 loc) · 1.81 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
{
"name": "project-3",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlishaSaleh/project-3.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^9.8.6",
"concurrently": "^4.1.0",
"nodemon": "^1.18.7",
"postcss": "^7.0.35",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.1.2"
},
"dependencies": {
"@craco/craco": "^6.1.2",
"@headlessui/react": "^1.2.0",
"@tailwindcss/forms": "^0.3.2",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bootstrap": "^4.6.0",
"cloudinary": "^1.25.1",
"connect-mongo": "^4.4.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.16.3",
"express-session": "^1.17.2",
"if-env": "^1.0.4",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.3.16",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"react-bootstrap": "^1.6.0",
"react-cloudinary-upload-widget": "^1.4.3",
"react-spring": "^9.2.0",
"react-tinder-card": "^1.4.0",
"react-toastify": "^7.0.4",
"spotify-web-api-node": "^5.0.2",
"validator": "^13.6.0"
},
"bugs": {
"url": "https://github.com/AlishaSaleh/project-3/issues"
},
"homepage": "https://github.com/AlishaSaleh/project-3#readme"
}