This repository has been archived by the owner on May 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.76 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
{
"name": "kunafa-client",
"version": "0.0.1",
"license": "MIT",
"author": {
"name": "Emad Shaaban",
"email": "[email protected]"
},
"main": "dist/js/kunafa.bundle.js",
"scripts": {
"build": "webpack",
"test": "jest",
"test:watch": "jest --watch",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"analyze": "webpack --json | webpack-bundle-size-analyzer",
"prettier": "prettier --write \"src/**/*.js\"",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/flow-typed/**",
"!**/lib/**",
"!**/dist/**",
"!**/coverage/**",
"!**/index.js",
"!webpack.config.js"
]
},
"dependencies": {
"moment": "^2.29.2",
"pouchdb": "^7.0.0",
"pouchdb-find": "^7.0.0",
"ramda": "^0.27.2",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.1.0",
"reselect": "^3.0.1",
"reselect-map": "^1.0.3",
"util": "^0.10.3",
"uuid": "^3.0.0"
},
"peerDependencies": {
"react": ">=16.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.0",
"coveralls": "^3.0.0",
"husky": "^0.14.3",
"jest": "^22.1.4",
"lint-staged": "^6.0.1",
"prettier": "1.9.2",
"react": "^16.2.0",
"redux-testkit": "^1.0.6",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
}
}