-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 982 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": "coffee-node",
"version": "1.0.0",
"description": "Backend is node",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "tsc & node .",
"dev": "tsc -w & nodemon ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/betsy-john23/coffee-node.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/betsy-john23/coffee-node/issues"
},
"homepage": "https://github.com/betsy-john23/coffee-node#readme",
"dependencies": {
"express": "^4.18.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.7.6",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}