-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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
45
46
47
48
{
"name": "express-typescript-starter",
"version": "1.0.0",
"description": "Starter Template - Express application writing with full support Typescript for building a REST API application",
"main": "index.ts",
"scripts": {
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q ./dist/index.js\"",
"build": "npx tsc",
"serve": "node ./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/or-abdillh/express-typescript-starter.git"
},
"keywords": [
"Express",
"Typescript",
"Starter",
"Template",
"Boilerplate"
],
"author": "Oka R. Abdillah",
"license": "MIT",
"bugs": {
"url": "https://github.com/or-abdillh/express-typescript-starter/issues"
},
"homepage": "https://github.com/or-abdillh/express-typescript-starter#readme",
"devDependencies": {
"@types/cors": "^2.8.15",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.20",
"concurrently": "^8.2.2",
"dotenv": "^16.3.1",
"module-alias": "^2.2.3",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2"
},
"_moduleAliases": {
"@src": "dist/src",
"@config": "dist/config" ,
"@type": "dist/types"
}
}