-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 958 Bytes
/
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
{
"name": "my-nodejs-framework",
"version": "1.0.4",
"description": "Simple nodejs framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MyroslavShymon/NodeJs-Framework.git"
},
"keywords": [
"Framework",
"NodeJs"
],
"author": "Myroslav Shymkiv <myroslavshymon@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/MyroslavShymon/NodeJs-Framework/issues"
},
"homepage": "https://github.com/MyroslavShymon/NodeJs-Framework#readme",
"dependencies": {
"express": "^4.19.2",
"object-hash": "^3.0.0",
"reflect-metadata": "^0.2.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/object-hash": "^3.0.6",
"@types/uuid": "^10.0.0"
},
"files": [
"dist"
]
}