-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.62 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
{
"name": "some-server",
"version": "1.0.0",
"description": "some server",
"main": "lib/index.js",
"scripts": {
"format": "eslint --fix \"src/**\"",
"test": "npm run test:internal",
"test:internal": "jest --testRegex \"(?<!\\.external)\\.test\\.ts$\" --setupFiles dotenv/config",
"test:external": "jest --testMatch \"**.external.test.ts\" --setupFiles dotenv/config",
"test:all": "jest --setupFiles dotenv/config",
"lint": "eslint \"src/**\"",
"lint:fix": "eslint --fix \"src/**.ts\"",
"start": "ts-node -r dotenv/config src/index.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"compare-versions": "^4.1.3",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"google-auth-library": "^8.5.2",
"mongodb": "^4.6.0",
"node-cron": "^3.0.0",
"reflect-metadata": "^0.1.13",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.1",
"@types/node-cron": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"axios-mock-adapter": "^1.20.0",
"eslint": "^8.17.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-boundaries": "^2.10.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}