-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.94 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
{
"name": "polka-typescript",
"version": "0.0.1",
"description": "Testing polka in typescript",
"license": "MIT",
"main": "src/server.ts",
"engines": {
"node": ">=10.x"
},
"author": {
"name": "Pepijn van den Broek <KurozeroPB>",
"email": "root@kurozeropb.info",
"url": "https://kurozeropb.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KurozeroPB/polka-typescript.git"
},
"homepage": "https://kurozeropb.github.io/polka-typescript/",
"bugs": {
"email": "bugs@kurozeropb.info",
"url": "https://github.com/KurozeroPB/polka-typescript/issues"
},
"keywords": [],
"scripts": {
"startjs": "yarn compile && cross-env NODE_ENV=production node build/src/server.js",
"testjs": "yarn lint && yarn compile && cross-env NODE_ENV=development node build/src/server.js",
"start": "cross-env NODE_ENV=production ts-node src/server.ts",
"test": "cross-env NODE_ENV=development ts-node src/server.ts",
"pretest": "yarn lint",
"compile": "tsc -p .",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --ext .ts --fix ."
},
"dependencies": {
"@kurozero/collection": "^0.3.6",
"@polka/send-type": "^0.5.2",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"express-rate-limit": "^5.0.0",
"morgan": "^1.9.1",
"polka": "^0.5.2"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express-rate-limit": "^3.3.0",
"@types/morgan": "^1.7.35",
"@types/node": "^12.0.8",
"@types/trouter": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"gts": "^1.0.0",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
}
}