-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 792 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 792 Bytes
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
{
"dependencies": {
"express": "^4.17.1"
},
"name": "EventsApp",
"version": "1.0.0",
"description": "App to share events information",
"main": "index.js",
"repository": "https://github.com/GlobalTechTalks/EventsApp.git",
"author": "Abhishek Khanna <abhishek@imagekit.io>",
"license": "MIT",
"private": false,
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.2",
"nodemon": "^1.19.4",
"nyc": "^14.1.1",
"sinon": "^7.5.0"
},
"scripts": {
"install-packages": "rm -rf node_modules && npm install",
"start": "nodemon server.js",
"lint": "./node_modules/eslint/bin/eslint.js server.js app/"
}
}