-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 725 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 725 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
{
"name": "ngarani-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "ts-node src/app.ts",
"build": "tsc",
"postbuild": "cp src/names.json dist/names.json",
"serve": "node dist/app.js"
},
"keywords": [
"fake name",
"random name",
"name api"
],
"author": "leonurium",
"license": "ISC",
"description": "easy way to given name",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.19.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^24.0.13",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}