-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.93 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
{
"name": "iot-crawler",
"version": "0.0.1",
"description": "",
"author": "Valentinas Janeiko",
"private": true,
"main": "./dist/index.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "tsc",
"start": "node -r dotenv/config ./dist/index.js",
"dev": "ts-node-dev --respawn --transpileOnly --clear -r dotenv/config -- ./src/index.ts",
"debug": "ts-node-dev --respawn --transpileOnly --clear --inspect -r dotenv/config ./src/index.ts",
"lint": "eslint ./src/**/*.ts"
},
"dependencies": {
"axios": "^0.19.0",
"cron": "^1.7.2",
"dotenv": "^8.1.0",
"envalid": "^5.0.0",
"express": "^4.17.1",
"http-status-codes": "^1.3.2",
"mongoose": "^5.6.11",
"zerorpc": "^0.9.8"
},
"devDependencies": {
"@types/cron": "^1.7.1",
"@types/express": "^4.17.1",
"@types/http-status-codes": "^1.2.0",
"@types/mongoose": "^5.5.16",
"@types/node": "^12.7.3",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"ts-node-dev": "^1.0.0-pre.42",
"typescript": "^3.6.2"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeature": {
"impliedString": true
},
"project": "./tsconfig.json",
"tsconfigRootDirectory": "./"
},
"env": {
"commonjs": true,
"es6": true,
"jest": true,
"node": true,
"mongo": true
},
"plugins": [
"@typescript-eslint",
"import"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript"
],
"rules": {}
}
}