-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "cybrdrag",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"server": "nodemon server",
"start": "node app",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ehwus/cybrdrag.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ehwus/cybrdrag/issues"
},
"homepage": "https://github.com/ehwus/cybrdrag#readme",
"devDependencies": {
"config": "^3.3.3",
"eslint": "^7.18.0",
"mongodb-memory-server": "^6.9.3",
"supertest": "^6.1.1"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"concurrently": "^5.3.0",
"config": "^3.3.3",
"cron": "^1.8.2",
"csv": "^5.3.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.9.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.12"
},
"jest": {
"testEnvironment": "node"
}
}