-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 915 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
{
"name": "express-ts",
"version": "1.0.0",
"description": "express.js + typescript study",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "concurrently \"tsc -w\" \"nodemon -q dist/index.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArturAbdullin/express-ts.git"
},
"keywords": [
"express",
"typescript",
"rest-api"
],
"author": "Artur Abdullin",
"license": "ISC",
"bugs": {
"url": "https://github.com/ArturAbdullin/express-ts/issues"
},
"homepage": "https://github.com/ArturAbdullin/express-ts#readme",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/node": "^18.11.9",
"concurrently": "^7.6.0",
"express": "^4.18.2",
"nodemon": "^2.0.20",
"typescript": "^4.9.3"
},
"dependencies": {
"cors": "^2.8.5"
}
}