-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.47 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.47 KB
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
{
"name": "project-delos",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"develop": "cross-env NODE_ENV=development nodemon server.js",
"build:ui": "rm -rf build && cd ../Frontend && npm run build --prod && cp -r build ../Backend/",
"deploy": "git push heroku master",
"deploy:full": "npm run build:ui && git add . && git commit -m UIBuild && npm run deploy",
"logs:prod": "heroku logs --tail",
"test": "cross-env NODE_ENV=test jest --verbose --runInBand",
"lint:fix": "eslint . --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.7",
"convict": "^5.2.0",
"cors": "^2.8.5",
"cross-env": "^6.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.8.11",
"mongoose-findorcreate": "^3.0.0",
"mongoose-unique-validator": "^2.0.3",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth": "^2.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@types/eslint-plugin-prettier": "^2.2.0",
"@types/prettier": "^1.19.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-security": "^1.4.0",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"prettier": "1.19.1"
},
"jest": {
"testEnvironment": "node"
}
}