-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
77 lines (77 loc) · 2.37 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
{
"name": "kurier",
"version": "1.3.0-beta11",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/ && tsc -b",
"build:dummy": "rm -rf dist/ && tsc -p tsconfig.json",
"lint": "eslint src/**/*.ts tests/**/*.ts && prettier --check src tests",
"lint:fix": "eslint src/**/*.ts --fix && prettier --write src tests",
"run:dummy": "SESSION_KEY=f0d87076b63d5c2732e282064fe6bebc tsnd --pretty --project ./tsconfig.test.json tests/dummy-app/",
"run:test-app": "SESSION_KEY=test tsnd --pretty --project ./tsconfig.test.json tests/test-suite/test-app/",
"test": "SESSION_KEY=test jest --forceExit --runInBand --ci",
"prepublishOnly": "rm -rf dist/ && tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kurierjs/kurier.git"
},
"author": "The Kurier.js Team",
"contributors": [
"Joel A. Villarreal Bertoldi",
"Santiago Pérsico",
"Ryan Tablada",
"Erik Bryn",
"Alexey Kulakov",
"Maciej Kwaśniak",
"Renan William",
"Marcelo Mira"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kurierjs/kurier/issues"
},
"homepage": "https://github.com/kurierjs/kurier#readme",
"dependencies": {
"compose-middleware": "^5.0.1",
"ember-cli-string-utils": "^1.1.0",
"escape-string-regexp": "^4.0.0",
"express": "^4.18.1",
"inflection": "^1.13.4",
"jsonwebtoken": "^9.0.0",
"knex": "^2.3.0",
"koa": "2.13.4",
"koa-body": "^5.0.0",
"koa-compose": "^4.1.0",
"ws": "^8.8.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^29.5.6",
"@types/jsonwebtoken": "^8.5.9",
"@types/koa": "^2.13.5",
"@types/pluralize": "^0.0.29",
"@types/supertest": "^2.0.12",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"jest-junit": "^14.0.1",
"prettier": "^2.7.1",
"sqlite3": "^5.0.11",
"superagent-defaults": "^0.1.14",
"supertest": "^6.2.4",
"supertest-koa-agent": "^0.3.2",
"supertest-prefix": "^1.0.2",
"trace-unhandled": "^2.0.1",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2",
"vercel-node-server": "^2.2.1"
}
}