-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.05 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
{
"name": "isy",
"version": "1.0.0",
"description": "I See You",
"main": "dist/servert.js",
"types": "dist/servert.d.ts",
"scripts": {
"start": "nodemon",
"build": "tsc --build tsconfig.json",
"test": "npm run lint & npm run test.unit",
"test:unit": "jest --runInBand --forceExit",
"doc": "typedoc --out docs ./src",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepublishOnly": "npm run build && npm test && npm run lint"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nikolayemrikh/icy.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/nikolayemrikh/icy/issues"
},
"homepage": "https://github.com/nikolayemrikh/icy#readme",
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/csurf": "^1.11.0",
"@types/eslint": "^7.2.6",
"@types/express": "^4.17.6",
"@types/fs-extra": "^9.0.7",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.34",
"@types/passport": "^1.0.6",
"@types/passport-jwt": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"editorconfig-checker": "^3.3.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"jest-extended": "^0.11.5",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"type-fest": "^0.21.2",
"typedoc": "^0.20.25",
"typescript": "^4.1.5"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fp-ts": "^2.9.5",
"fs-extra": "^9.1.0",
"glob": "^7.1.6",
"node-rtsp-stream": "0.0.9",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0"
},
"engines": {
"node": "~14.15.5"
}
}