-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.68 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
{
"name": "audiophile-server",
"version": "0.0.1",
"description": "A server to stream music files",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "node dist/index.js",
"start": "npm run serve",
"build": "npm run build:ts && npm run tslint",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"build:ts": "tsc",
"start:dev": "ts-node src/index.ts",
"start:dev:watch": "nodemon",
"test:unit": "ava src/**/*spec.ts"
},
"keywords": [
"audio",
"stream"
],
"author": "Eduardo Diaz <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/express": "^4.16.1",
"@types/node": "^11.13.8",
"compression": "^1.7.4",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"mongodb": "^3.2.3",
"morgan": "^1.9.1",
"reflect-metadata": "^0.1.13",
"typedi": "^0.8.0"
},
"devDependencies": {
"@types/compression": "^0.0.36",
"@types/cors": "^2.8.5",
"@types/debug": "^4.1.4",
"@types/dotenv": "^6.1.1",
"@types/mongodb": "^3.1.25",
"@types/morgan": "^1.7.35",
"ava": "^1.4.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"mongodb-memory-server": "^5.1.0",
"nodemon": "^1.18.11",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.4.5"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
]
}
}