This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.41 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "contacts-book",
"version": "1.0.0-alpha",
"private": true,
"engines": {
"node": ">=10.15.3"
},
"scripts": {
"test:watch": "jest --passWithNoTests --watch",
"test": "npm run test:watch",
"heroku-postbuild": "npm --prefix ./views install ./views",
"prepare-dev-frontend": "cd ./views && npm run build:dev",
"prepare-prod-frontend": "cd ./views && npm run build",
"start-dev-server": "DEBUG=contactsbook:* nodemon ./bin/www",
"start": "npm run start-dev-server",
"predeploy": "npm run prepare-prod-frontend",
"deploy": "NODE_ENV=production node ./bin/www",
"deploy-heroku": "NODE_ENV=production node ./bin/www",
"deploy-heroku-with-pm2": "NODE_ENV=production pm2-runtime start ecosystem.config.js --env production node ./bin/www"
},
"repository": {
"type": "git",
"url": "https://github.com/lvnam96/contactsbook.git"
},
"license": "MIT",
"dependencies": {
"async": "^3.1.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-pg-simple": "^6.0.1",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"debug": "^4.1.1",
"express": "^4.16.4",
"express-force-ssl": "^0.3.2",
"express-jwt": "^5.3.1",
"express-session": "^1.17.0",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"morgan": "^1.9.1",
"ms": "^2.1.2",
"node-gyp": "^3.6.2",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.14.0",
"pg-promise": "^10.3.1",
"pm2": "^4.2.0",
"pug": "^2.0.3",
"randomcolor": "^0.5.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"serve-favicon": "^2.5.0",
"supports-color": "^7.1.0",
"uuid": "^3.4.0"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@types/async": "^3.0.7",
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.17.1",
"@types/compression": "^1.0.1",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/helmet": "0.0.45",
"@types/jsonwebtoken": "^8.3.7",
"@types/lodash": "^4.14.149",
"@types/morgan": "^1.7.37",
"@types/ms": "^0.7.31",
"@types/passport": "^1.0.2",
"@types/passport-local": "^1.0.33",
"@types/pg": "^7.14.1",
"@types/randomcolor": "^0.5.3",
"@types/serve-favicon": "^2.5.0",
"@types/uuid": "^3.4.7",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-compat": "^3.5.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"nodemon": "^2.0.1",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.1",
"react-axe": "^3.3.0",
"superagent": "^5.1.2",
"supertest": "^4.0.2",
"webpack-node-externals": "^1.7.2"
}
}