-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "good-notifier-typescript",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"build": "npm-run-all clean tsc",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"start": "node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/ws": "^6.0.3",
"crypto": "^1.0.1",
"graphql-middleware": "^4.0.2",
"graphql-yoga": "^1.18.3",
"pg": "^7.14.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^0.17.5"
},
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/node": "^12.12.11",
"@types/shelljs": "^0.8.6",
"fs-extra": "^8.1.0",
"nodemon": "^2.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"shelljs": "^0.8.3",
"ts-node": "^8.5.2",
"tslint": "^5.20.1",
"typeorm": "^0.2.20",
"typescript": "^3.7.2",
"webpack": "^4.41.2"
}
}