-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.47 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
{
"name": "tweet-your-opnion",
"version": "1.0.0",
"description": "",
"main": "index.js",
"jest": {
"testRegex": "./server/__tests__/*",
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"**/*.js",
"!**/*node_modules/**",
"!**/client/**",
"!**/server/app.js",
"!**/coverage/**"
]
},
"scripts": {
"start": "pm2-runtime start ecosystem.config.js --env production",
"heroku-postbuild": "NODE_ENV=production cd client && npm install && npm run build",
"test": "NODE_ENV=test jest --runInBand --coverage --no-cache --verbose",
"dev:server": "NODE_ENV=development nodemon ./server/index.js",
"dev:client": "NODE_ENV=development cd client && npm start",
"dev": "NODE_ENV=dev concurrently \"npm run dev:server\" \"npm run dev:client\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/mossa-Sammer/tweet-your-opnion.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mossa-Sammer/tweet-your-opnion/issues"
},
"homepage": "https://github.com/mossa-Sammer/tweet-your-opnion#readme",
"dependencies": {
"bcrypt": "^3.0.7",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"pg": "^7.17.0",
"pm2": "^4.2.3",
"yup": "^0.28.0"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"concurrently": "^5.0.2",
"dotenv": "^8.2.0",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
}
}