-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.89 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
{
"name": "dono-application",
"version": "1.0.0",
"description": "UW Project 3",
"main": "./server",
"scripts": {
"test": "npm run lint && npm run mocha",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server/index.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"lint": "eslint --quiet .",
"fix": "eslint --fix .",
"seed": "node scripts/seedDB.js",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build",
"mocha": "mocha ./server/test/** --timeout 12000ms --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abdulhakeemdahir/dono-application.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/abdulhakeemdahir/dono-application/issues"
},
"homepage": "https://github.com/abdulhakeemdahir/dono-application#readme",
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"concurrently": "^4.1.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"mocha": "^9.0.2",
"nodemon": "^1.18.7",
"prettier": "^1.13.7"
},
"dependencies": {
"axios": "^0.18.1",
"bcryptjs": "2.4.3",
"cloudinary": "^1.25.1",
"cloudinary-react": "^1.7.0",
"compression": "^1.7.4",
"crypto-random-string": "^3.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.0",
"express-session": "^1.16.1",
"find-hashtags": "^1.0.1",
"if-env": "^1.0.4",
"mongoose": "^5.11.15",
"mongoose-type-url": "^2.1.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"paypal-rest-sdk": "^1.8.1",
"request": "^2.88.2",
"socket.io": "^4.0.0",
"uniqid": "^5.3.0",
"uuid": "^8.3.2"
}
}