forked from Ashutosh00710/github-readme-activity-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.83 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
46
47
48
49
50
51
52
53
{
"name": "github-readme-activity-graph",
"version": "1.0.0",
"description": "An activity graph to show you github activities (or contribution)",
"main": "main.ts",
"scripts": {
"dev:start": "nodemon src/main.ts",
"test": "jest",
"coverage": "npm test -- --coverage",
"build": "tsc",
"start": "node dist/main.js",
"lint": "eslint \"{src,styles,types,interfaces,__test__}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"__test__/**/*.ts\" \"interfaces/**/*.ts\" \"styles/**/*.ts\" \"types/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ashutosh00710/github-readme-activity-graph.git"
},
"author": "Ashutosh Dwivedi",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ashutosh00710/github-readme-activity-graph/issues"
},
"homepage": "https://github.com/Ashutosh00710/github-readme-activity-graph#readme",
"dependencies": {
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.11",
"@types/node": "^14.14.21",
"axios": "^0.21.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"moment": "^2.29.4",
"node-chartist": "^1.0.5",
"nodemon": "^2.0.20",
"supertest": "^6.1.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.6.3",
"prettier": "^2.3.2",
"ts-jest": "^26.4.4"
}
}