-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.03 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
{
"name": "seamless-redux",
"version": "1.0.9",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "./node_modules/.bin/webpack --mode=production",
"test": "./node_modules/.bin/mocha --require @babel/register",
"test:watch": "./node_modules/.bin/mocha --require @babel/register --watch",
"lint": "./node_modules/eslint/bin/eslint.js src --fix",
"deply-docs": "cd ./slate && ./deploy.sh",
"prepublish": "npm run test && npm run build"
},
"author": "bnbarak",
"license": "MIT",
"homepage": "https://github.com/bnbarak/seamless-redux",
"dependencies": {
"keymirror": "^0.1.1",
"lodash": "^4.17.14",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"@emotion/core": "^10.0.14",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-plugin-webpack-aliases": "^1.1.3",
"chai": "^4.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"eslint-utils": ">=1.4.1",
"husky": "^3.0.0",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^6.1.4",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
[
"babel-plugin-webpack-aliases",
{
"config": "./webpack.config.js"
}
]
]
},
"husky": {
"hooks": {
"pre-push": "npm test && npm run lint"
}
}
}