-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "blog-ts-koa",
"version": "1.0.0",
"description": "this is my frist blog use koa2 typescript graphql",
"main": "./index.ts",
"keywords": ["fxy5869571"],
"author": "fxy",
"license": "ISC",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc&&ts-node ./src/index.ts",
"watch":
"nodemon --watch 'src/**/*' -e ts,tsx --exec 'ts-node' ./src/index.ts"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"iconv-lite": "^0.4.24",
"jsonwebtoken": "^8.3.0",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.0",
"koa-jwt": "^3.3.2",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa2-cors": "^2.0.6",
"lodash": "^4.17.10",
"mongoose": "^5.1.0",
"path": "^0.12.7",
"request": "^2.88.0"
},
"devDependencies": {
"@types/lodash": "^4.14.112",
"@types/jsonwebtoken": "^7.2.8",
"@types/koa-jwt": "^3.3.0",
"@types/koa-bodyparser": "^4.2.0",
"tslint-config-prettier": "^1.12.0",
"@types/koa-logger": "^3.1.0",
"@types/mongoose": "^5.0.13",
"@types/koa": "^2.0.45",
"@types/node": "^10.0.8",
"prettier": "^1.12.1",
"tslint": "^5.10.0",
"ts-node": "^6.0.3",
"nodemon": "^1.17.4",
"typescript": "^3.0.0"
}
}