-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
33 lines (33 loc) · 902 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
{
"private": true,
"name": "awesome-stack",
"version": "0.0.1",
"description": "Github ReadME stats for your favourite web dev stack!",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"lint": "eslint --fix src",
"test": "nyc --reporter=text mocha --exit"
},
"keywords": [],
"author": "Borrus-sudo",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"mocha": "^9.1.1",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"supertest": "^6.1.6"
}
}