-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
{
"name": "leanbot",
"version": "1.1.2",
"description": "LeanBot for Slack",
"proxy": "http://localhost:5050",
"author": "Michael Reyes (@mreysei)",
"license": "ISC",
"scripts": {
"build": "tsc --build src/tsconfig.json",
"start": "ts-node src/index.ts",
"start:dev": "nodemon",
"test": "jest",
"test:silent": "npm test -- --silent",
"test:watch": "npm run test:silent -- --watch",
"test:database-windows": "powershell .\\src\\services\\database\\mongo\\test\\mongo-script.ps1",
"test:database-unix": "bash ./src/services/database/mongo/test/mongo-script.sh",
"coverage": "npm run test:silent -- --coverage",
"coverage:badges": "npm run coverage && jest-coverage-badges",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix-dry-run"
},
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"build"
],
"preset": "ts-jest",
"resetMocks": true,
"coverageReporters": [
"json-summary",
"text"
]
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"express": "^4.17.1",
"https": "^1.0.0",
"i18next": "^19.9.0",
"jest-coverage-badges": "^1.1.2",
"mongodb": "^3.6.3",
"morgan": "^1.10.0",
"node-schedule": "^1.3.2",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^3.8.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.11",
"@types/jest": "^25.1.3",
"@types/mongodb": "^3.6.3",
"@types/node": "^13.7.5",
"@types/node-schedule": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"jest": "^25.1.0",
"nodemon": "^2.0.7",
"ts-jest": "^25.3.0"
}
}