forked from thx/rap2-delos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.22 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
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
{
"name": "rap2-delos",
"version": "1.0.0",
"repository": {
"url": "https://github.com/thx/rap2-delos"
},
"description": "",
"main": "dist/dispatch.js",
"scripts": {
"build": "rm -rf dist/ && tsc",
"test": "cross-env NODE_ENV=development cross-env TEST_MODE=true nyc mocha --exit --reporter nyan",
"check": "npm run tslint",
"dev": "cross-env NODE_ENV=development nodemon --watch scripts --watch dist dist/scripts/dev.js",
"create-db": "node dist/scripts/init",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"start": "cross-env NODE_ENV=production node dist/dispatch.js"
},
"author": "bosn, nuysoft",
"license": "ISC",
"dependencies": {
"@types/kcors": "^2.2.2",
"@types/koa": "^2.0.43",
"@types/koa-router": "^7.0.27",
"@types/mocha": "^2.2.46",
"chalk": "^1.1.3",
"cross-env": "^5.1.1",
"graceful": "^1.0.1",
"js-beautify": "^1.6.9",
"kcors": "^2.2.1",
"koa": "^2.2.0",
"koa-body": "^2.0.0",
"koa-logger": "^2.0.1",
"koa-router": "^7.1.1",
"koa-send": "^4.0.0",
"koa-session": "^5.0.0",
"koa-static": "^3.0.0",
"mockjs": "^1.0.1-beta3",
"moment": "^2.17.1",
"mysql": "^2.11.1",
"mysql2": "^1.5.1",
"node-fetch": "^1.7.1",
"node-print": "0.0.4",
"path-to-regexp": "^2.1.0",
"reflect-metadata": "^0.1.10",
"sequelize": "^4.28.6",
"sequelize-typescript": "^0.6.2",
"svg-captcha": "^1.3.11",
"underscore": "^1.8.3",
"urllib": "^2.22.0"
},
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/kcors": "^2.2.2",
"@types/koa": "^2.0.43",
"@types/koa-logger": "^3.1.0",
"@types/koa-router": "^7.0.27",
"@types/koa-session": "^3.0.6",
"@types/koa-static": "^4.0.0",
"@types/mocha": "^2.2.46",
"@types/mockjs": "^1.0.0",
"@types/node": "^8.5.2",
"babel-eslint": "^7.2.3",
"chai": "^3.5.0",
"mocha": "^4.1.0",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"nyc": "^11.4.1",
"pre-commit": "^1.2.2",
"source-map-support": "^0.5.0",
"standard": "^10.0.2",
"supertest": "^3.0.0",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"pre-commit": [
"check"
],
"engines": {
"install-node": "8.9.3"
}
}