-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 3.55 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "pointyapi",
"version": "4.0.0",
"ts-project-version": "2.3.0",
"description": "*\"Stop writing endpoints\"*",
"private": true,
"scripts": {
"start": "npm run dev",
"dev": "ts-node test/examples/basic/server",
"watch": "nodemon .",
"test": "npm run test:prod && npm run test:examples",
"test:typescript": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.dev.json",
"test:dev": "npm run lint && npm run db:drop && npm run test:typescript",
"test:prod": "npm run build:prod:clean && npm run db:drop && npm run coverage",
"test:examples": "npm run test:jasmine-basic && npm run test:jasmine-guards && npm run test:jasmine-chat && npm run test:jasmine-terms",
"test:jasmine-basic": "npm run db:drop && jasmine --config=test/jasmine.basic.json",
"test:jasmine-guards": "npm run db:drop && jasmine --config=test/jasmine.guards.json",
"test:jasmine-chat": "npm run db:drop && jasmine --config=test/jasmine.chat.json",
"test:jasmine-terms": "npm run db:drop && jasmine --config=test/jasmine.terms.json",
"clean": "rm -rf dist",
"build:dev": "npm run lint && npm run preprocess && npm run compile && npm run postprocess",
"build:dev:clean": "npm run clean && npm run build:dev",
"build:prod": "npm run preprocess prod && npm run lint:prod && npm run compile && npm run postprocess prod",
"build:prod:clean": "npm run clean && npm run build:prod",
"compile": "tsc",
"preprocess": "",
"postprocess": "",
"doc": "typedoc --out docs src",
"lint": "eslint . --ext .ts --fix",
"lint:prod": "eslint . --ext .ts --fix --config=.eslintrc.prod.json",
"coverage": "nyc npm run coverage-test",
"coverage-test": "jasmine --config=jasmine.json",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"db:configure": "npx tsc dbconfig.ts --module nodenext && mv dbconfig.js orm-cli.js",
"db:drop": "npm run db:configure && typeorm schema:drop -f orm-cli",
"admin:example": "ts-node script/example"
},
"dependencies": {
"atob": "^2.1.2",
"bcryptjs": "^2.4.3",
"btoa": "^1.2.1",
"class-validator": "^0.13.2",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.8.0",
"pg-connection-string": "^2.5.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"ts-appconfig": "^1.2.0",
"ts-async-bootstrap": "^2.1.0",
"ts-error-handler": "^1.0.2",
"ts-tiny-log": "^1.0.3",
"typeorm": "0.2.45"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/atob": "^2.1.2",
"@types/btoa": "^1.2.3",
"@types/express": "^4.17.14",
"@types/jasmine": "^4.3.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^16.11.25",
"@types/request": "^2.48.8",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"coveralls": "^3.1.1",
"eslint": "^8.7.0",
"jasmine": "^4.4.0",
"mock-req-res": "^1.2.1",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"ts-packager": "^1.1.0",
"typedoc": "^0.22.11",
"typescript": "^4.5.4"
},
"peerDependencies": {
"typeorm": "0.2.45"
},
"repository": {
"type": "git",
"url": "git+https://github.com/statelessstudio/pointyapi.git"
},
"author": "stateless-studio",
"license": "MIT",
"bugs": {
"url": "https://github.com/statelessstudio/pointyapi/issues"
},
"homepage": "https://github.com/statelessstudio/pointyapi#readme",
"keywords": [
"api",
"server",
"framework",
"typescript",
"database",
"orm",
"endpoint",
"filter",
"guard",
"handler",
"http",
"middleware",
"model",
"query",
"request",
"response",
"util",
"jwt",
"authentication",
"authorization"
]
}