-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.19 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
{
"name": "@valexe-technologies/lookup.api",
"version": "1.0.0",
"description": "RESTApi for Lookup",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"homepage": "https://github.com/ValEXE-Technologies/Lookup.Api",
"publishConfig": {
"access": "public",
"registry": "https://github.com/ValEXE-Technologies/Lookup.Api"
},
"repository": {
"type": "git",
"url": "https://github.com/ValEXE-Technologies/Lookup.Api"
},
"bugs": {
"url": "https://github.com/ValEXE-Technologies/Lookup.Api/issues"
},
"scripts": {
"start": "nodemon ./src/index.ts",
"build": "tsc",
"publish-lib": "npm run build && npm publish",
"publish-lib-beta": "npm run build && npm publish --tag beta"
},
"author": "Indrajeet Valera",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.6.4",
"cors": "^2.8.5",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@valexe-technologies/lookup.services": "^1.0.8",
"express": "^4.18.1"
}
}