-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.96 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": "@typetron/framework",
"description": "Modern Node.js framework for modern apps written in Typescript",
"license": "MIT",
"version": "0.4.0-rc13",
"keywords": [
"typetron",
"framework",
"web",
"backend",
"typescript"
],
"author": {
"email": "[email protected]",
"name": "Ionel Lupu"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "mocha",
"test:watch": "mocha --watch",
"preversion": "npm test",
"lint": "eslint -c .eslintrc.json --ext .ts ."
},
"engines": {
"node": ">= 12.13.0"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"bcryptjs": "^2.4.3",
"busboy": "^1.6.0",
"fast-url-parser": "^1.1.3",
"jsonwebtoken": "^9.0.0",
"mysql": "^2.18.1",
"sqlite3": "^5.0.2",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.31.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@testdeck/mocha": "^0.1.2",
"@types/bcryptjs": "^2.4.2",
"@types/busboy": "^1.5.1",
"@types/chai": "^4.2.21",
"@types/jsonwebtoken": "^8.5.5",
"@types/mocha": "^9.0.0",
"@types/mysql": "^2.15.19",
"@types/node": "^16.9.3",
"@types/sqlite3": "^3.1.7",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"chai": "^4.3.4",
"eslint": "^8.46.0",
"mocha": "^9.1.1",
"ts-mockito": "^2.6.1",
"nyc": "^15.1.0",
"source-map-support": "^0.5.20",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"tslint": "^6.1.3",
"typescript": "4.1.6"
},
"repository": {
"type": "git",
"url": "https://github.com/typetron/framework.git"
},
"files": [
"**/*.ts",
"**/*.js",
"**/*.ts.map",
"**/*.js.map"
]
}