-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.31 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "hands-down",
"version": "0.0.2",
"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": {
"start": "parcel public/index.html public/dev.html",
"dev:train": "NODE_ENV=train parcel public/dev.html",
"build": "parcel build public/*.html",
"lint:js": "eslint --fix",
"lint:html": "tidy -config tidy_config.txt",
"lint:css": "stylelint --fix",
"lint": "npm run lint:js client/*.js && npm run lint:html public/*.html && npm run lint:css public/css/*.css",
"test": "cypress run",
"cy": "cypress open",
"test:dev": "CYPRESS_BASE_URL=http://localhost:1234 cypress run",
"cy:dev": "CYPRESS_BASE_URL=http://localhost:1234 cypress open"
},
"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": {
"workbox-cacheable-response": "^5.1.3",
"workbox-expiration": "^5.1.3",
"workbox-routing": "^5.1.3",
"workbox-strategies": "^5.1.3"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-plugin-transform-runtime": "^6.23.0",
"cssnano": "^4.1.10",
"cypress": "^4.3.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-esnext": "^4.0.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jquery": "^1.5.1",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.10.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.10",
"parcel-bundler": "^1.12.4",
"prettier": "2.0.2",
"stylelint": "^13.3.0",
"stylelint-config-standard": "^20.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:js"
],
"*.html": [
"prettier --write"
],
"*.css": [
"npm run lint:css"
]
}
}