-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "@typetron/typetron",
"description": "Modern Node.js framework for backend apps written in Typescript",
"license": "MIT",
"version": "0.3.7",
"author": {
"email": "[email protected]",
"name": "Ionel Lupu"
},
"repository": "https://github.com/typetron/typetron",
"scripts": {
"start": "ts-node-dev -r tsconfig-paths/register -r dotenv/config --respawn index.ts",
"prod": "ts-node -r tsconfig-paths/register -r dotenv/config index.ts",
"test": "mocha"
},
"engines": {
"node": ">= 12.33.0"
},
"dependencies": {
"@types/dotenv": "^8.2.0",
"dotenv": "^10.0.0",
"@typetron/framework": "^0.4.0-rc10",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"typescript": "5.2.2"
},
"devDependencies": {
"@testdeck/mocha": "^0.1.2",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.3",
"chai": "^4.3.4",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"source-map-support": "^0.5.20",
"ts-node-dev": "^1.1.8",
"tslint": "^6.1.3"
}
}