This repository has been archived by the owner on May 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "prokeys",
"version": "1.0.0",
"description": ".",
"main": "index.js",
"dependencies": {
"eslint-config-airbnb": "^17.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.14.2",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-csso": "^3.0.1",
"gulp-htmlmin": "^5.0.1",
"gulp-jsonminify": "*",
"gulp-terser": "*",
"gulp-uglify": "^3.0.2",
"husky": "^2.4.0",
"lint-staged": "^8.2.0",
"prettier": "1.17.1",
"pretty-quick": "^1.10.0",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2"
},
"lint-staged": {
"js/*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index -g"
}
},
"scripts": {
"build": "webpack && gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GaurangTandon/ProKeys.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GaurangTandon/ProKeys/issues"
},
"homepage": "https://github.com/GaurangTandon/ProKeys#readme"
}