-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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
{
"name": "example-reporting-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"client-install": "cd client && npm install",
"start": "ts-node src/app.ts",
"dev:ts": "concurrently \"nodemon\" \"npm run client\"",
"client": "npm start --prefix client",
"server": "tsc --watch | nodemon --inspect ./dist/app.js --watch dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"compression": "^1.7.4",
"concurrently": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^5.0.0-alpha.7",
"node-cache": "^4.2.1",
"tsc-watch": "^2.4.0"
},
"devDependencies": {
"@types/compression": "^1.0.1",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/node": "^12.7.2",
"@types/node-cache": "^4.1.3",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"ts-node": "^8.3.0",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.5.3"
}
}