-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
102 lines (102 loc) · 2.55 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
96
97
98
99
100
101
102
{
"name": "api",
"version": "1.11.3",
"description": "REST API written in TypeScript using express and mysql",
"author": "designhub",
"contributors": [
{
"name": "LukvonStrom",
"email": "[email protected]",
"url": "https://lukvonstrom.de"
},
{
"name": "flo",
"url": "http://flooo.me"
},
{
"name": "Fin Reinhhard",
"email": "[email protected]",
"url": "http://Angu.li"
}
],
"license": "MIT",
"dependencies": {
"@types/body-parser": "^1.16.8",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.3",
"@types/debug": "0.0.31",
"@types/dotenv": "^4.0.2",
"@types/express": "^4.11.1",
"@types/lowdb": "^1.0.0",
"@types/mime": "^2.0.0",
"@types/morgan": "^1.7.35",
"@types/mysql": "^2.15.2",
"@types/node": "^11.9.0",
"@types/serve-favicon": "^2.2.30",
"body-parser": "^1.18.2",
"celebrate": "^8.0.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"debug": "^4.0.0",
"dotenv": "^6.0.0",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"imgur": "^0.3.1",
"lowdb": "^1.0.0",
"morgan": "^1.9.0",
"mysql": "^2.15.0",
"npm": "^6.0.0",
"path": "^0.12.7",
"pm2": "^3.0.0",
"puppeteer": "^1.0.0",
"raven": "^2.4.2",
"request-promise-native": "^1.0.5",
"sequelize": "^5.1.0",
"serve-favicon": "^2.4.5",
"showdown": "^1.8.6",
"simple-recaptcha-new": "^1.1.1",
"uuid": "^3.2.1",
"vayder": "^1.0.0"
},
"devDependencies": {
"gulp-aglio": "0.0.10",
"babel-core": "^6.26.0",
"babel-preset-es2017": "^6.24.1",
"babel-require": "^1.0.1",
"del": "^4.0.0",
"gulp": "^3.9.1",
"gulp-bump": "^3.1.0",
"gulp-filter": "^5.1.0",
"gulp-git": "^2.5.1",
"gulp-gzip": "^1.4.2",
"gulp-help": "^1.6.1",
"gulp-istanbul": "^1.1.3",
"gulp-load-plugins": "^1.5.0",
"gulp-nodemon": "^2.2.1",
"gulp-notify": "^3.2.0",
"gulp-nsp": "^3.0.0",
"gulp-rename": "^1.2.2",
"gulp-shell": "^0.6.2",
"gulp-tar": "^2.1.0",
"gulp-todo": "^7.0.0",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^5.0.0",
"minimist": "^1.2.0",
"q": "^1.5.1",
"require-dir": "^1.0.0",
"run-sequence": "^2.2.1",
"tslint": "^5.9.1",
"typescript": "^2.7.1",
"dredd": "^6.0.0"
},
"engines": {
"node": ">=7.0.0"
},
"scripts": {
"build": "gulp build",
"buildstart": "node ./dist/server.js",
"postinstall": "npm i -g typings && typings install",
"test": "dredd",
"start": "gulp watchAndServe"
}
}