-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 2.31 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
75
{
"name": "commonaudiovideoserver",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "npm run serve",
"serve": "node build/src/server.js",
"watch-node": "nodemon build/src/server.js",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"serve-debug": "nodemon --inspect build/src/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check",
"eslint-test": "eslint './**/*.ts'",
"eslint-fix": "eslint --fix './**/*.ts'",
"prettier-test": "prettier --check './**/*.ts'",
"prettier-fix": "prettier --write './**/*.ts'",
"lint-tests": "npm run eslint-test;npm run prettier-test",
"lint-fixes": "npm run eslint-fix;npm run prettier-fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devclub-iitd/CommonAudioVideoServer.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/devclub-iitd/CommonAudioVideoServer/issues"
},
"homepage": "https://github.com/devclub-iitd/CommonAudioVideoServer#readme",
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/lusca": "^1.6.1",
"@types/node": "^13.11.1",
"@types/traverse": "^0.6.32",
"concurrently": "^5.2.0",
"ejs": "^3.1.2",
"gts": "^2.0.1",
"minimist": "^1.2.5",
"nodemon": "^2.0.4",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/gridfs-stream": "^0.5.33",
"@types/lodash": "^4.14.152",
"@types/mongoose": "^5.7.16",
"@types/multer": "^1.4.3",
"@types/multer-gridfs-storage": "^4.0.1",
"@types/socket.io": "^2.1.7",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"gridfs-stream": "^1.1.1",
"lodash": "^4.17.19",
"lusca": "^1.6.1",
"mongoose": "^5.9.13",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.1.0",
"requirements": "^1.3.2",
"socket.io": "^2.3.0",
"traverse": "^0.6.6",
"winston": "^3.2.1"
}
}