-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "node-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for node backend with user auth",
"main": "index.js",
"scripts": {
"start": "node index",
"dev": "nodemon index",
"test": "jest",
"test:watch": "jest --watch",
"test:break": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"test:coverage": "jest --coverage",
"lint": "eslint --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/codebru/node-boilerplate.git"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/codebru/node-boilerplate/issues"
},
"homepage": "https://github.com/codebru/node-boilerplate#readme",
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
},
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"express-session": "^1.17.1",
"flash": "^1.1.0",
"helmet": "^4.4.1",
"node-fetch": "^2.6.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pg-promise": "^10.9.2"
}
}