-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
43
44
45
{
"name": "github-dashboard",
"version": "1.0.0",
"description": "A TypeScript project example",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "ts-node github-crawler/src/index.ts",
"lint": "eslint . --ext .ts"
},
"keywords": [
"typescript",
"example"
],
"author": "Your Name",
"license": "ISC",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.11",
"@types/pg": "^8.10.9",
"@types/reflect-metadata": "^0.1.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"https-proxy-agent": "^7.0.2",
"pg": "^8.11.3",
"reflect-metadata": "^0.1.14",
"typeorm": "^0.3.17",
"typeorm-typedi-extensions": "^0.4.1"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/node": "^14.0.0",
"eslint": "^7.0.0",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.0",
"eslint-plugin-standard": "^4.0.0",
"ts-node": "10.7",
"typescript": "^4.0.0"
}
}