-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.09 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
{
"name": "2020.2-eccoar_reports",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "tsnd -r tsconfig-paths/register --transpile-only --respawn --ignore-watch node_modules src/server.ts",
"build": "node ./build/server.js --env=production",
"test": "jest",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"lint-report": "eslint . --ext .ts --output-file ./lint-report.html --format html",
"check-types": "tsc",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"validate": "npm-run-all --parallel check-types check-format lint",
"prepare": "husky install"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/html-pdf": "^2.2.0",
"@types/jest": "^26.0.20",
"@types/morgan": "^1.9.2",
"@types/node": "^8.0.29",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"ts-node-dev": "^1.1.6",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eccoar/2020.2-Eccoar_Reports.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Eccoar/2020.2-Eccoar_Reports/issues"
},
"homepage": "https://github.com/Eccoar/2020.2-Eccoar_Reports#readme",
"dependencies": {
"@sentry/node": "^6.2.5",
"@sentry/tracing": "^6.2.5",
"aws-sdk": "2.878.0",
"cors": "^2.8.5",
"dotenv": "8.2.0",
"express": "^4.17.1",
"handlebars": "^4.7.7",
"html-pdf": "^2.2.0",
"image-to-base64": "^2.1.1",
"morgan": "^1.10.0"
},
"lint-staged": {
"*.+(js|ts|tsx)": [
"eslint"
],
"**/*.+(js|json|ts|tsx)": [
"prettier --write",
"git add"
],
"*.--write": "prettier --write"
}
}