This repository was archived by the owner on Jul 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.37 KB
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
45
46
47
48
49
50
51
{
"name": "pmlplayerstat",
"description": "API for PML player stats.",
"main": "src/server.ts",
"author": "Khushal Bhardwaj",
"scripts": {
"start": "NODE_ENV=production node dist/server.js",
"postinstall": "npm run build",
"dev": "NODE_ENV=development nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/server.ts",
"prebuild": "rm -rf dist/ && prettier --write src/",
"build": "tsc",
"pretest": "tsc -p .",
"test": "NODE_ENV=test jest --forceExit --coverage --verbose",
"publish": "git push heroku master",
"log": "heroku logs -t"
},
"devDependencies": {
"@types/cheerio": "^0.22.30",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/morgan": "^1.9.3",
"@types/supertest": "^2.0.11",
"@types/throng": "^5.0.2",
"chai": "^4.3.4",
"jest": "^27.2.0",
"ts-jest": "^27.0.5"
},
"dependencies": {
"axios": "^0.21.4",
"cheerio": "^1.0.0-rc.10",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^4.6.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.12",
"prettier": "^2.4.1",
"supertest": "^6.1.6",
"throng": "^5.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"winston": "^3.3.3"
},
"license": "MIT",
"homepage": "https://playerstatpml.herokuapp.com/",
"bugs": {
"url": "https://github.com/khushalbhardwaj-0111/playerStat/issues"
}
}