-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 969 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
{
"name": "hands-down",
"version": "0.0.1",
"description": "Help slow the spread of COVID-19 by discouraging people from touching their face while sitting in front of a computer.",
"main": "index.js",
"scripts": {
"lint": "eslint . --fix --ext .js,.html && tidy -m -config tidy_config.txt *.html",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misterpeddy/hands-down.git"
},
"author": "Pedram Pejman",
"license": "ISC",
"bugs": {
"url": "https://github.com/misterpeddy/hands-down/issues"
},
"homepage": "https://github.com/misterpeddy/hands-down#readme",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "3.1.2",
"prettier": "2.0.2"
}
}