-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (63 loc) · 2.06 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
{
"name": "theme-based-roadmap-using-trello",
"version": "1.0.0",
"description": "A theme-based roadmap using Trello as the backend",
"main": "src/index.js",
"repository": "https://github.com/christian-konrad/theme-based-roadmap-using-trello",
"author": "Christian Konrad <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "pm2 start ecosystem.config.json",
"start-runtime": "pm2-runtime start ecosystem.config.json",
"stop": "pm2 stop ecosystem.config.json",
"log": "pm2 log",
"dev": "cross-env NODE_ENV=development nodemon src/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.js",
"prettier:fix": "prettier --write **/*.js",
"docker:prod": "docker-compose -f docker-compose.yml -f docker-compose.prod.yml up",
"docker:dev": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up"
},
"dependencies": {
"@hapi/joi": "^17.1.0",
"@sideway/address": "^4.1.2",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.7",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"express-mongo-sanitize": "^2.0.0",
"express-rate-limit": "^5.0.0",
"express-react-views": "^0.11.0",
"express-session": "^1.17.1",
"helmet": "^3.21.2",
"http-status": "^1.4.0",
"lodash": "^4.17.15",
"nodemailer": "^6.3.1",
"pm2": "^4.1.2",
"sharp": "^0.28.2",
"trello-node-api": "^0.0.9",
"winston": "^3.2.1",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@babel/plugin-transform-flow-strip-types": "^7.12.10",
"coveralls": "^3.0.7",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-security": "^1.4.0",
"nodemon": "^2.0.0",
"prettier": "^2.0.5"
}
}