-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 1.63 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
65
66
67
68
{
"name": "freemage",
"version": "0.1.0",
"description": "Image sharing app",
"private": true,
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./jest.setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/db.js",
"/client/"
]
},
"scripts": {
"start": "node app.js",
"client": "npm start --prefix client",
"server": "nodemon --ignore __tests__/ app.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build",
"test": "jest --detectOpenHandles --runInBand"
},
"dependencies": {
"cloudinary": "^1.14.0",
"compression": "^1.7.4",
"concurrently": "^4.1.2",
"cors": "^2.8.5",
"debug": "^2.6.9",
"express": "^4.16.4",
"google-auth-library": "^5.2.2",
"heroku-ssl-redirect": "0.0.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"sha1": "^1.1.1"
},
"main": "app.js",
"devDependencies": {
"dotenv": "^8.0.0",
"jest": "^24.8.0",
"mongodb-memory-server": "^6.2.3",
"nodemon": "^1.19.1",
"supertest": "^4.0.2"
},
"keywords": [
"image upload",
"image stock",
"photo sharing app",
"free images",
"freemage"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Shahzayb/freemage.git"
},
"author": "Shahzaib Sarwar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Shahzayb/freemage/issues"
},
"homepage": "https://github.com/Shahzayb/freemage#readme",
"engines": {
"node": "12.x",
"npm": "6.x"
}
}