forked from cokeSchlumpf/pushed.to
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.31 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
{
"name": "pushed-to",
"version": "0.0.0",
"private": true,
"main": "bin/app.js",
"scripts": {
"start": "node --inspect=5858 -r ts-node/register ./src/main/app.ts",
"start:watch": "nodemon",
"build": "tsc && cp -R src/main/public bin/ && cp -R src/main/views bin/"
},
"dependencies": {
"@octokit/rest": "^16.27.3",
"@types/bluebird": "^3.5.28",
"@types/cron": "^1.7.1",
"@types/http-errors": "^1.6.2",
"@types/lodash": "^4.14.144",
"@types/morgan": "^1.7.37",
"bluebird": "^3.5.5",
"cookie-parser": "~1.4.4",
"cron": "^1.7.2",
"debug": "~2.6.9",
"express": "~4.16.1",
"express-graphql": "^0.8.0",
"graphql": "^14.3.1",
"http-errors": "~1.6.3",
"js-base64": "^2.5.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"morgan": "~1.9.1",
"node-cache": "^4.2.0",
"node-fetch": "^2.6.0",
"pug": "^2.0.3",
"stripmargin": "^1.0.7",
"ts-node": "^8.4.1"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/node": "^12.12.5",
"nodemon": "^1.19.1",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
}
}