-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.55 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
51
52
53
54
55
56
57
{
"name": "backend-express-template",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "commonjs",
"scripts": {
"test": "jest --verbose --runInBand --testLocationInResults --setupFiles dotenv/config --passWithNoTests",
"test:watch": "npm run test -- --watch",
"start": "node -r dotenv/config server.js",
"start:watch": "nodemon -r dotenv/config server.js",
"setup-db": "node -r dotenv/config setup-db.js",
"setup-heroku": "heroku run npm run setup-db"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/lib/tasks/demoUserCleanup.js"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/eslint-parser": "^7.18.2",
"@babel/eslint-plugin": "^7.17.7",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@types/jest": "^28.1.1",
"@types/pg": "^8.6.5",
"eslint": "^8.17.0",
"jest": "^28.1.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"supertest": "^6.2.3"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cloudinary": "^1.36.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"cross-fetch": "^3.1.5",
"dotenv": "^16.3.1",
"express": "^4.18.1",
"fetch": "^1.1.0",
"http-proxy-middleware": "^2.0.6",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.5-lts.1",
"newrelic": "^10.6.2",
"node": "^19.7.0",
"node-cron": "^3.0.2",
"node-fetch": "^3.2.10",
"pg": "^8.7.3",
"segfault-handler": "^1.3.0"
}
}