-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.96 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
{
"name": "dtools-api",
"version": "0.0.1",
"private": true,
"description": "The backend for dTool project.",
"homepage": "http://tools.ages.pucrs.br/dtool/wiki/wikis/home",
"repository": {
"type": "git",
"url": "http://tools.ages.pucrs.br/dtool/api.git"
},
"scripts": {
"start": "npm run _prod",
"dev": "nodemon",
"_prod": "NODE_ENV=production npm-run-all clean transpile start-server",
"_dev": "NODE_ENV=development npm-run-all transpile start-server",
"start-server": "node -r dotenv/config ./dist/app.js",
"transpile": "babel ./src --out-dir ./dist",
"clean": "rimraf ./dist ./coverage",
"pretest": "npm run lint",
"test": "jest",
"coverage": "jest --coverage",
"format": "prettier --write src/",
"format:staged": "pretty-quick --staged --pattern 'src/*.js' --pattern 'src/**/*.js'",
"lint": "eslint --ext .js --ignore-path .gitignore src/",
"docs": "node docs/update.js ./docs/"
},
"dependencies": {
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"email-validator": "^2.0.4",
"exceljs": "^3.9.0",
"express": "~4.17.1",
"express-jwt": "^5.3.1",
"express-jwt-permissions": "^1.3.3",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"neat-csv": "^5.2.0",
"nodemailer": "^6.4.10",
"pg": "^8.0.0",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.5",
"typedi": "^0.8.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-only-warn": "^1.0.2",
"husky": "^4.2.3",
"jest": "^25.2.4",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"prettier": "2.0.2",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2"
}
}