-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.59 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "TypeMonPress",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/xeoneux/TypeMonPress.git",
"author": "Aayush Kapoor <[email protected]>",
"license": "MIT",
"scripts": {
"start": "tsc && concurrently -k -p \"{name} >>>\" -n \"TS,NODE\" -c \"cyan.bold,yellow.bold\" \"tsc -w\" \"nodemon dist\"",
"debug": "tsc && concurrently -k -p \"{name} >>>\" -n \"TS,NODE\" -c \"cyan.bold,yellow.bold\" \"tsc -w\" \"nodemon --inspect dist\"",
"build": "apidoc -o dist/docs -e node_modules && tsc",
"cover": "nyc mocha test/**.ts"
},
"dependencies": {
"@types/cheerio": "^0.22.7",
"acl": "^0.4.11",
"bluebird": "^3.5.0",
"body-parser": "^1.18.1",
"cheerio": "^1.0.0-rc.2",
"compression": "^1.6.2",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.3",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"express-session": "^1.15.5",
"express-validator": "^3.2.0",
"fs-extra": "^4.0.2",
"helmet": "^3.5.0",
"http-status-codes": "^1.3.0",
"joi": "^10.4.1",
"mongoose": "^4.11.12",
"morgan": "^1.8.2",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-local": "^1.0.0",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"winston": "^2.3.1"
},
"devDependencies": {
"@types/acl": "^0.4.34",
"@types/bluebird": "^3.5.11",
"@types/body-parser": "^1.16.5",
"@types/chai": "^4.0.4",
"@types/compression": "^0.0.33",
"@types/connect-mongo": "^0.0.32",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.1",
"@types/dotenv": "^4.0.1",
"@types/express": "^4.0.37",
"@types/express-session": "^0.0.32",
"@types/fs-extra": "^4.0.2",
"@types/helmet": "^0.0.34",
"@types/http-status-codes": "^1.0.29",
"@types/joi": "^10.4.3",
"@types/mocha": "^2.2.43",
"@types/mongoose": "^4.7.21",
"@types/morgan": "^1.7.33",
"@types/node": "^7.0.43",
"@types/passport": "^0.3.4",
"@types/passport-facebook": "^2.1.6",
"@types/passport-local": "^1.0.31",
"@types/supertest": "^2.0.3",
"@types/winston": "^2.3.6",
"apidoc": "^0.17.6",
"chai": "^4.1.2",
"concurrently": "^3.5.0",
"mocha": "^3.5.3",
"nyc": "^11.2.1",
"supertest": "^3.0.0",
"ts-node": "^3.3.0",
"typescript": "^2.5.2"
},
"nyc": {
"all": true,
"extension": [
".ts"
],
"exclude": [
"node_modules"
],
"reporter": [
"json",
"html"
],
"require": [
"ts-node/register"
],
"include": [
"src/*.ts",
"src/**/*.ts"
]
}
}