forked from visionelixir/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.36 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
{
"name": "@visionelixir/framework",
"version": "0.5.2",
"description": "VisionElixir Framework",
"author": "Brent Honeybone",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/visionelixir/framework.git"
},
"bugs": {
"url": "https://github.com/visionelixir/framework/issues"
},
"homepage": "https://github.com/visionelixir/framework#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --config=jest.config.json",
"lint": "eslint ./src --max-warnings 0 --ext ts",
"typescript:build": "tsc",
"typescript:watch": "tsc --watch",
"check": "npm run lint && tsc --noEmit",
"build": "rm -rf dist && npm test && npm run lint && npm run typescript:build",
"deploy": "npm run build && npm publish --access=public",
"git:version:push": "git push --tags && git push origin master",
"git:version:patch": "npm run build && npm version patch && npm run git:version:push",
"git:version:minor": "npm run build && npm version minor && npm run git:version:push",
"git:version:major": "npm run build && npm version major && npm run git:version:push"
},
"dependencies": {
"@google-cloud/logging": "^9.1.0",
"@koa/cors": "^3.1.0",
"chalk": "^4.1.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-compose": "^4.1.0",
"koa-compress": "^5.0.1",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.21",
"nunjucks": "^3.2.3",
"on-finished": "^2.3.0",
"pg": "^8.5.1",
"statuses": "^2.0.1",
"yargs-parser": "^20.2.7"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/koa": "^2.13.1",
"@types/koa__cors": "^3.0.2",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-compress": "^4.0.1",
"@types/koa-router": "^7.4.1",
"@types/koa-static": "^4.0.1",
"@types/lodash": "^4.14.168",
"@types/nunjucks": "^3.1.4",
"@types/on-finished": "^2.3.1",
"@types/pg": "^7.14.11",
"@types/statuses": "^2.0.0",
"@types/zone.js": "^0.5.12",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}