This repository has been archived by the owner on Aug 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 1.9 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
{
"name": "reeva",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"gulp": "gulp",
"test": "gulp test",
"dev": "gulp dev",
"build": "gulp build",
"lint": "tslint src/**/*.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^22.1.2",
"@types/jsonwebtoken": "^7.2.5",
"@types/koa": "^2.0.44",
"@types/koa-bodyparser": "^4.2.0",
"@types/koa-router": "^7.0.27",
"@types/koa-static": "^4.0.0",
"@types/node": "^9.4.0",
"@types/prop-types": "^15.5.2",
"@types/qrcode.react": "^0.6.3",
"@types/randomstring": "^1.1.6",
"@types/supertest": "^2.0.4",
"gulp": "^3.9.1",
"gulp-nodemon": "^2.2.1",
"gulp-rimraf": "^0.2.2",
"gulp-typescript": "^3.2.4",
"jest-extended": "^0.6.0",
"reflect-metadata": "^0.1.12",
"sql.js": "^0.5.0",
"supertest": "^3.0.0",
"ts-jest": "^22.0.4",
"ts-node": "^4.1.0",
"tslint": "~5.9.1",
"tslint-config-standard": "~7.0.0",
"tslint-loader": "~3.5.3",
"typescript": "^2.7.1"
},
"dependencies": {
"antd": "^3.2.1",
"axios": "^0.17.1",
"body-parser": "^1.18.2",
"global": "^4.3.2",
"gulp": "^3.9.1",
"jest": "^22.2.2",
"jsonwebtoken": "^8.1.1",
"koa": "^2.4.1",
"koa-bodyparser": "^4.2.0",
"koa-http-auth": "0.0.3",
"koa-jwt": "^3.3.0",
"koa-router": "^7.4.0",
"koa-static": "^4.0.2",
"koa2-cors": "^2.0.5",
"prepend-http": "^2.0.0",
"randomstring": "^1.1.5",
"sha256": "^0.2.0",
"sqlite3": "^4.0.1",
"sw-precache-cra": "^1.0.0-alpha.2",
"typeorm": "^0.1.12"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "src/test/.*\\.spec\\.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"typeRoots": [
"./node_modules/@types",
"./typings"
]
}