-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 983 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 983 Bytes
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": "address-api",
"version": "1.0.0",
"description": "Address api for web sites",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChunksLab/Address-API.git"
},
"author": "ChunksLab, amownyy",
"license": "ISC",
"bugs": {
"url": "https://github.com/ChunksLab/Address-API/issues"
},
"homepage": "https://github.com/ChunksLab/Address-API#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express-async-handler": "^1.2.0",
"mongoose": "^8.13.1",
"morgan": "^1.10.0",
"runtypes": "^7.0.4"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/module-alias": "^2.0.4",
"@types/morgan": "^1.9.9",
"express": "^5.1.0",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.2"
}
}