-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.7 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
{
"name": "sap-store-backend",
"version": "1.0.0",
"description": "Developed by CodeWalnut",
"main": "app.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/app.js",
"dev": "if [ ! -d \"dist\" ]; then npm run build; fi && concurrently \"npx tsc --watch\" \"nodemon -q dist/app.js\"",
"test": "NODE_ENV=test jest",
"test:watch": "jest --watchAll",
"test:coverage": "NODE_ENV=test jest --coverage",
"test:report": "NODE_ENV=test jest --watchAll=false --coverage --testResultsProcessor jest-sonar-reporter",
"lint": "eslint 'src/**/*.{js,ts}' 'tests/**/*.{js,ts}' --fix",
"format": "prettier-eslint './**/*.{js,json,ts}' --write",
"sonar": "node sonar-project.js"
},
"author": "Umesh",
"license": "ISC",
"dependencies": {
"bignumber.js": "^9.1.1",
"connect-session-sequelize": "^7.1.5",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"express-session": "^1.17.3",
"fs-extra": "^11.1.0",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"lodash.groupby": "^4.6.0",
"md5": "^2.3.0",
"nanoid": "^3.3.4",
"nodemailer": "^6.9.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"sequelize": "^6.29.0",
"tedious": "^15.1.2",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.6",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.1",
"@types/lodash.groupby": "^4.6.7",
"@types/md5": "^2.3.2",
"@types/node": "^18.14.4",
"@types/nodemailer": "^6.4.7",
"@types/passport": "^1.0.12",
"@types/passport-local": "^1.0.35",
"@types/sequelize": "^4.28.14",
"@types/supertest": "^2.0.12",
"@types/tedious": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"concurrently": "^7.6.0",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-complexity": "^1.0.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"jest-sonar-reporter": "^2.0.0",
"localtunnel": "^2.0.2",
"nodemon": "^2.0.13",
"prettier": "^2.8.8",
"prettier-eslint-cli": "^7.1.0",
"sequelize-cli": "^6.5.2",
"sonarqube-scanner": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"nodemonConfig": {
"watch": [
"dist/app.js"
],
"ignore": [
"src/**/*.ts",
"**/test/**",
"**/docs/**"
],
"delay": 2500
}
}