-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 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
{
"name": "videu-backend",
"version": "0.1.1-alpha",
"description": "Backend REST API for the videu platform",
"main": "index.js",
"private": true,
"scripts": {
"test": "NODE_ENV=development mocha --require ts-node/register 'test/**/*.ts'",
"coverage": "nyc npm run test",
"build": "rm -rf build/; tsc",
"dev": "ts-node-dev --respawn --transpileOnly ./src/bootstrap.ts",
"doc": "rm -rf doc/api/; typedoc --options typedoc.js src/ types/",
"start": "tsc && ./index.js"
},
"repository": {
"type": "git",
"url": "git@github.com:videu/backend.git"
},
"keywords": [
"videu",
"freetube",
"backend",
"REST",
"video"
],
"author": "Felix Kopp <sandtler@sandtler.club>",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.4",
"@types/jsonwebtoken": "^8.3.8",
"@types/mongoose": "^5.7.8",
"@types/node": "^13.11.0",
"@types/randomstring": "^1.1.6",
"@types/redis": "^2.8.17",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.7",
"randomstring": "^1.1.5",
"semver": "^6.3.0",
"typescript": "^3.8.3"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@microsoft/tsdoc": "^0.12.19",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/chai-http": "^4.2.0",
"@types/mocha": "^5.2.7",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"eslint": "^6.8.0",
"eslint-plugin-tsdoc": "^0.2.4",
"mocha": "^7.1.1",
"mongodb-memory-server": "^6.5.2",
"nodemon": "^1.19.4",
"nyc": "^15.0.1",
"ts-node": "^8.8.2",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^5.20.1",
"typedoc": "^0.15.5"
}
}