-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.37 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js --ignore tests",
"client": "BROWSER=none npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "NPM_CONFIG_PRODUCTION=false npm install --legacy-peer-deps --prefix client && npm run build --prefix client",
"heroku-postbuild": "npm run build",
"@kill-comment": "Kill a process running in a specific port: PORT=3000 npm run kill",
"kill": "kill $(lsof -t -i:$PORT) && echo '> KILLED!' || echo '> The port was already dead'",
"@test-comment": "It will run: jest --env=node --colors --coverage test --runInBand --detectOpenHandles --forceExit",
"test": "jest --no-cache --runInBand --detectOpenHandles --forceExit"
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1455.0",
"body-parser": "^1.20.2",
"concurrently": "^8.2.1",
"cookie-session": "^2.0.0",
"express": "^4.18.2",
"migrate-mongoose": "^4.0.0",
"mongoose": "^5.13.20",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"path-parser": "^6.1.0",
"redis": "2.8.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"jest": "^24.9.0",
"nodemon": "^3.0.1",
"puppeteer": "^1.20.0",
"ts-jest": "^24.3.0"
}
}