forked from sumeet-bansal/tse-onboarding-fa19
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 999 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
35
36
{
"name": "quick-repo",
"version": "1.0.0",
"description": "quick repo",
"main": "index.js",
"scripts": {
"start": "node index",
"dev": "./node_modules/.bin/nodemon -L -e js -i node_modules -i .git -V index.js",
"lint": "./node_modules/.bin/eslint ./ --ext .js",
"test": "./node_modules/.bin/jest --config jest.config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sumeet-bansal/quick-repo.git"
},
"author": "Sumeet Bansal",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/sumeet-bansal/quick-repo/issues"
},
"homepage": "https://github.com/sumeet-bansal/quick-repo#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"morgan": "^1.9.1",
"uuid": "^3.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.8.0",
"nodemon": "^1.19.1"
}
}