-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.32 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
{
"name": "ranker",
"version": "0.0.1",
"main": "src/index.ts",
"repository": "git@github.com:mpoc/ranker.git",
"license": "MIT",
"scripts": {
"build": "tsc",
"postbuild": "cp -r src/views dist",
"start": "node dist/index.js",
"prod": "yarn build && yarn start",
"dev": "nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts",
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/mongoose": "^5.7.22",
"@types/morgan": "^1.9.0",
"@types/node": "^14.0.20",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"eslint-plugin-import": "^2.20.2",
"nodemon": "^2.0.3",
"ts-node": "^8.9.1",
"typescript": "^3.8.3"
},
"dependencies": {
"joi": "^17.1.1",
"axios": "^0.19.2",
"express": "^4.17.1",
"glicko-two": "^1.3.1",
"http-status-codes": "^1.4.0",
"metascraper": "^5.11.21",
"metascraper-image": "^5.11.21",
"metascraper-title": "^5.11.21",
"metascraper-url": "^5.11.21",
"mongoose": "^5.9.18",
"morgan": "^1.10.0",
"pug": "^3.0.0",
"winston": "^3.2.1"
}
}