Newer
Older
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
{
"name": "server-start",
"version": "1.0.0",
"description": "Start of a Typescript Express Server",
"main": "./src/server.js",
"scripts": {
"start": "node --inspect=5858 -r ts-node/register ./src/server.ts",
"start:watch": "nodemon",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.9",
"@types/node": "^14.14.10",
"@types/systeminformation": "^3.54.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"multer": "^1.4.2",
"nodemon": "^2.0.6",
"systeminformation": "^5.6.12",
"ts-node": "^9.1.0",
"typescript": "^4.1.2"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/multer": "^1.4.5"
}
}