-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
{
"name": "server-whitelist-manager",
"version": "0.7.1",
"license": "GPL-3.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/crolopez/server-whitelist-manager/"
},
"author": "Cristóbal López Peñalver",
"scripts": {
"dev": "concurrently \"tsc -w\" \"nodemon dist/index.js\"",
"lint": "eslint -c .eslintrc.js src/**/*.ts src/*.ts tests/**/*.ts",
"prebuild": "yarn lint",
"build": "rimraf ./dist && tsc",
"start": "node dist/index.js",
"test:unit": "jest tests",
"test:unit:ci": "jest tests --ci --runInBand"
},
"dependencies": {
"@types/morgan": "^1.9.2",
"axios": "^0.21.1",
"compression": "^1.7.4",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"localtunnel": "^2.0.1",
"moment": "^2.29.1",
"mongodb": "^3.6.3",
"mongoose": "^5.11.8",
"morgan": "^1.10.0",
"nodemon": "^2.0.6"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/cron": "^1.7.2",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.0",
"@types/localtunnel": "^2.0.0",
"@types/moment": "^2.13.0",
"@types/mongoose": "^5.10.3",
"@types/nock": "^11.1.0",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"concurrently": "^5.3.0",
"eslint": "^7.16.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.0.1",
"nock": "^13.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}