-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 1.66 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
{
"name": "snowbox",
"version": "1.0.5",
"description": "Use snowbox for a quick start with redux",
"main": "dist/snowbox.js",
"module": "dist/snowbox.js.es",
"sideEffects": false,
"scripts": {
"build": "npm run clean && run-p build:*",
"build:development": "NODE_ENV=development rollup -c",
"build:production": "NODE_ENV=production rollup -c",
"clean": "rimraf dist",
"prepublish": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/algotech/snowbox.git"
},
"keywords": [
"snowbox",
"react",
"redux"
],
"files": [
"dist/",
"LICENSE",
"README.md"
],
"author": "Login Anca",
"license": "MIT",
"bugs": {
"url": "https://github.com/algotech/snowbox/issues"
},
"homepage": "https://github.com/algotech/snowbox#readme",
"dependencies": {
"axios": "^0.21.4",
"immer": "^9.0.3",
"lodash": "^4.17.21",
"normalizr": "^3.6.0",
"redux": "^4.0.5",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.12.10",
"@testing-library/react-hooks": "^7.0.0",
"enzyme": "^3.11.0",
"jest": "^26.5.2",
"npm-run-all": "^4.1.5",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.37.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-filesize": "^9.1.0",
"rollup-plugin-terser": "^7.0.2"
},
"peerDependencies": {
"react": "^17.0.1"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
]
}
}