-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.25 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.25 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "learned-be",
"version": "1.0.0",
"description": "learned-",
"main": "index.js",
"scripts": {
"start": "node -r dotenv-safe/config index.js",
"dev": "nodemon -r dotenv-safe/config index.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --config .prettierrc '**/*.{ts,js}' --write",
"localpg": "knex migrate:rollback && knex migrate:latest && knex seed:run",
"prodpg": "heroku run knex migrate:rollback && heroku run knex migrate:latest && heroku run knex seed:run"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/learneda/labs11_learned_a-BE"
},
"author": "me",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"axios": "^0.21.1",
"chalk": "^4.1.1",
"cheerio": "^1.0.0-rc.3",
"cloudinary": "^1.26.2",
"compression": "^1.7.4",
"cookie-session": "^1.3.3",
"cors": "^2.8.5",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"faker": "^5.5.3",
"google-books-search": "^0.3.1",
"he": "^1.2.0",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.8",
"lodash": "^4.17.15",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"multer-storage-cloudinary": "^4.0.0",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"passport-goodreads": "^1.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"passport-meetup-oauth2": "0.0.2",
"pg": "^8.6.0",
"prerender-node": "^3.2.4",
"prettier": "^2.3.2",
"qs": "^6.7.0",
"request": "^2.88.0",
"route-cache": "^0.4.4",
"rss-to-json": "^2.0.1",
"socket.io": "^4.1.3",
"url-metadata": "^2.4.0",
"xmldom": "^0.6.0",
"xpath": "^0.0.32"
},
"devDependencies": {
"@types/express": "^4.17.3",
"@types/lodash": "^4.14.149",
"@types/node": "^13.9.2",
"@types/socket.io": "^2.1.4",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"lint-staged": "^10.0.8",
"nodemon": "^2.0.12",
"typescript": "^3.8.3"
}
}