-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.33 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
{
"name": "properjs",
"version": "0.0.1",
"description": "MVC Framework for Typescript based Web Applications",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.json && tsconfig-replace-paths --project tsconfig.json",
"dev:server": "nodemon --watch './**/*.ts' --exec 'ts-node -r tsconfig-paths/register' examples/hello-word-example/app.ts",
"start": "node examples/hello-word-example/node_modules/properjs/lib/src/index.js",
"test": "jest --silent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Enkosz/ProperJS.git"
},
"author": "Simone Giannino",
"license": "MIT",
"bugs": {
"url": "https://github.com/Enkosz/ProperJS/issues"
},
"homepage": "https://github.com/Enkosz/ProperJS#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.24",
"@types/object-hash": "^2.2.1",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.1",
"tspath": "^1.3.7",
"typescript": "^4.6.3"
},
"dependencies": {
"express": "^4.17.3",
"module-alias": "^2.2.2",
"object-hash": "^3.0.0",
"reflect-metadata": "^0.1.13",
"tsconfig-replace-paths": "^0.0.11",
"tscpaths": "^0.0.9",
"tslog": "^3.3.3"
}
}