-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.49 KB
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
{
"name": "koa-vue",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"format": "prettier --write 'src/**/*.ts'",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"lint": "tslint --project tsconfig.json --format stylish",
"build": "tsc",
"test": "jest --ci --reporters=jest-junit --reporters=default",
"serve": "ts-node src/server.ts",
"develop": "nodemon & cd client-web; npm run develop",
"start": "nodemon"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/http-status-codes": "^1.2.0",
"@types/jest": "^23.3.10",
"@types/koa": "^2.0.47",
"@types/koa-bodyparser": "^4.2.1",
"@types/koa-router": "^7.0.35",
"@types/node": "^10.12.18",
"@types/supertest": "^2.0.7",
"@types/uuid": "^3.4.4",
"http-status-codes": "^1.3.0",
"jest": "^23.6.0",
"jest-junit": "^5.2.0",
"koa": "^2.6.2",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"nodemon": "^1.18.9",
"prettier": "1.15.3",
"supertest": "^3.3.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.17.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.2.2"
},
"dependencies": {
"class-validator": "^0.9.1",
"inversify": "^5.0.1",
"inversify-koa-utils": "^1.0.0",
"koa-static": "^5.0.0",
"reflect-metadata": "^0.1.12",
"uuid": "latest"
}
}