forked from boxting/boxting-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.33 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
{
"name": "boxting-backend",
"version": "1.0.0",
"description": "Backend project for boxting mobile app and admin web control panel",
"main": "index.js",
"scripts": {
"prebuild": "rimraf dist",
"copy:package": "node -e \"require('fs').copyFile('./package.json', './dist/package.json', function(err) { if (err) console.log(err); console.log('package.json copied!') })\"",
"copy:templates": "node -e \"require('fs-extra').copySync('./src/components/mailing/template', './dist/components/mailing/template')\"",
"build": "tsc",
"postbuild": "run-p copy:package copy:templates",
"start": "node ./dist/index.js",
"start:dev": "nodemon",
"postinstall": "tsc",
"deploy": "git add . && git commit -m heroku && git push heroku develop:master",
"test": "echo \"Error: no test specified\" && exit 0",
"heroku-postbuild": "npm install --only=dev --no-shrinkwrap && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boxting/boxting-backend.git"
},
"keywords": [
"blockchain-voting",
"node",
"sequelize",
"nodejs",
"express",
"typescript",
"backend"
],
"author": "RodrigoAGM",
"license": "ISC",
"bugs": {
"url": "https://github.com/boxting/boxting-backend/issues"
},
"homepage": "https://github.com/boxting/boxting-backend#readme",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"handlebars": "^4.7.6",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"nodemailer": "^6.4.17",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"sequelize": "^5.21.10",
"sequelize-typescript": "^1.1.0",
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/bluebird": "^3.5.32",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.1",
"@types/node": "^14.11.10",
"@types/nodemailer": "^6.4.0",
"@types/validator": "^13.1.0",
"nodemon": "^2.0.5",
"npm-run-all": "^4.1.5",
"ts-node": "^9.0.0"
},
"engines": {
"node": "12.18.3",
"npm": "6.14.x"
}
}