-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
92 lines (92 loc) · 2.51 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "react-add-to-homescreen",
"version": "1.1.0",
"description": "",
"main": "build/index.js",
"scripts": {
"build": "webpack",
"lint": "npx eslint webpack.config.* src --color",
"start": "webpack --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kkoscielniak/react-add-to-homescreen.git"
},
"keywords": [
"react",
"homescreen",
"pwa",
"ios",
"android"
],
"author": "Krystian Kościelniak",
"license": "MIT",
"bugs": {
"url": "https://github.com/kkoscielniak/react-add-to-homescreen/issues"
},
"homepage": "https://github.com/kkoscielniak/react-add-to-homescreen#readme",
"dependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"react": "^16.6.3",
"react-icons": "^3.2.2"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.2.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-loader": "7",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.2.0",
"chai-enzyme": "^1.0.0-beta.1",
"coveralls": "^3.0.2",
"css-loader": "^1.0.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.9.0",
"eslint-config-brainhub": "^1.9.2",
"eslint-config-prettier": "^4.0.0",
"husky": "^1.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.11.0",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"prop-types": "^15.6.2",
"react-dom": "^16.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2"
},
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFiles": [
"./src/setupTests.js"
],
"verbose": true,
"collectCoverage": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn lint && yarn test"
}
}
}