-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "sonarr-trakt-tv",
"version": "0.0.0",
"main": "src",
"private": true,
"scripts": {
"nodemon": "nodemon -r dotenv/config --delay 1500ms --watch dev.env --watch ./build \"./build/app.js\" dotenv_config_path=dev.env",
"tsc-watch": "tsc -w",
"dev": "concurrently \"npm run tsc-watch\" \"npm run nodemon\""
},
"jest": {
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "<rootDir>/test/setup.js"
},
"devDependencies": {
"apidoc": "^0.16.1",
"apidoc-markdown": "^0.2.0",
"concurrently": "^3.5.0",
"cross-env": "^3.1.3",
"dotenv-safe": "^4.0.3",
"nock": "^9.0.2",
"nodemon": "^1.12.1",
"opn-cli": "^3.1.0",
"sinon": "^1.17.5",
"supertest": "^2.0.0",
"supertest-as-promised": "^4.0.0",
"tsc-watch": "^1.0.8",
"typescript": "^2.6.1"
},
"dependencies": {
"@types/express": "^4.0.39",
"bluebird": "^3.4.0",
"body-parser": "^1.15.1",
"bodymen": "^1.0.1",
"class-transformer": "^0.1.8",
"compression": "^1.6.2",
"cors": "^2.7.1",
"express": "^4.13.4",
"inversify": "^4.3.0",
"inversify-express-utils": "^4.0.1",
"morgan": "^1.7.0",
"node-json-db": "^0.7.3",
"querymen": "^2.0.0",
"reflect-metadata": "^0.1.10",
"requestify": "^0.2.5",
"trakt.tv": "^6.0.1",
"uuid": "^3.1.0"
}
}