-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 956 Bytes
/
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
{
"name": "stackexchange.readme-stats",
"version": "2.2.0",
"description": "Stack Exchange Readme Stats",
"main": "source/index.js",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "nodemon ./source/index.js",
"start": "node ./source/index.js",
"prod": "cross-env NODE_ENV=production node ./source/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/squeeble-ink/stackexchange.readme-stats.git"
},
"author": "TessavWalstijn",
"license": "GPL-3.0 License",
"bugs": {
"url": "https://github.com/squeeble-ink/stackexchange.readme-stats/issues"
},
"homepage": "https://github.com/squeeble-ink/stackexchange.readme-stats#readme",
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"node-fetch": "^3.3.1",
"request": "^2.88.2"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}