-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.01 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.01 KB
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
{
"name": "@typetron/framework",
"description": "Modern Node.js framework for modern apps written in Typescript",
"license": "MIT",
"version": "0.5.16",
"keywords": [
"typetron",
"framework",
"web",
"backend",
"typescript"
],
"author": {
"email": "ionel@typetron.org",
"name": "Ionel Lupu"
},
"scripts": {
"build": "tsc && cp package.json build/ && cp Readme.md build/ && cp LICENSE.md build/ && cp package-lock.json build/",
"dev": "tsc --watch",
"test": "mocha",
"test:watch": "mocha --watch",
"preversion": "npm test",
"lint": "eslint ."
},
"engines": {
"node": ">= 12.13.0"
},
"dependencies": {
"@sendgrid/mail": "^8.1.5",
"bcryptjs": "^3.0.2",
"busboy": "^1.6.0",
"fast-url-parser": "^1.1.3",
"jsonwebtoken": "^9.0.2",
"mysql": "^2.18.1",
"reflect-metadata": "^0.2.2",
"sqlite3": "^5.1.7",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.52.0"
},
"devDependencies": {
"@testdeck/mocha": "^0.3.3",
"@types/bcryptjs": "^3.0.0",
"@types/busboy": "^1.5.4",
"@types/chai": "^4.3.20",
"@types/jsonwebtoken": "^9.0.10",
"@types/mocha": "^10.0.10",
"@types/mysql": "^2.15.27",
"@types/node": "^24.0.10",
"@types/sqlite3": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"chai": "^4.5.0",
"eslint": "^9.30.1",
"mocha": "^11.7.1",
"nyc": "^17.1.0",
"source-map-support": "^0.5.21",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "5.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/typetron/framework.git"
},
"files": [
"**/*.ts",
"**/*.js",
"**/*.ts.map",
"**/*.js.map"
]
}