-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1007 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
{
"name": "perseus-back-end",
"version": "1.0.0",
"description": "back-end for perseus restaurant management project",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "tsc",
"watch:build": "tsc --watch",
"watch:server": "nodemon './dist/index.js' --watch './dist'",
"dev": "npm-run-all clean build --parallel watch:build watch:server --print-label",
"lint": "eslint . --ext .ts",
"test": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/main95/Perseus-back-end.git"
},
"author": "main95",
"license": "MIT",
"bugs": {
"url": "https://github.com/main95/Perseus-back-end/issues"
},
"homepage": "https://github.com/main95/Perseus-back-end#readme",
"devDependencies": {
"@types/express": "^4.17.1",
"eslint": "^8.33.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"rimraf": "^4.1.2",
"typescript": "^4.9.5"
},
"dependencies": {
"express": "^4.17.1"
}
}