-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.2 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.2 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "react-redux-peach",
"version": "1.0.0",
"author": {
"name": "Mohamad Taheri",
"email": "borvelt@gmail.com"
},
"license": "ISC",
"repository": "https://github.com/borvelt/react-redux-peach",
"description": "Make and develop web apps easier with react hooks and redux",
"main": "dist/index.js",
"module": "src/index.js",
"scripts": {
"clean:dist": "rm -rf dist",
"clean:web": "rm -rf web",
"clean": "npm run clean:dist && npm run clean:web",
"prettify:js": "prettier-eslint --write \"**/*.js\"",
"prettify:ts": "prettier-tslint fix \"**/*.ts\"",
"prettify:check": "tslint-config-prettier-check ./tslint.json",
"lint": "npm run prettify:js && npm run prettify:ts",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"dist": "npm run clean:dist && npm run lint && webpack --config webpack.config/dist.js",
"test": "jest --no-cache"
},
"pre-commit": {
"run": [
"precommit-msg",
"lint"
]
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest",
"^.+\\.jsx?$": "babel-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js|jsx)"
]
},
"peerDependencies": {
"react": "^16.7.0-alpha.2",
"react-dom": "^16.7.0-alpha.2",
"redux": "^4.0.1"
},
"dependencies": {
"object-maker": "^1.2.0",
"redux-peach": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.1.5",
"@gfx/zopfli": "^1.0.10",
"@types/jest": "^23.3.9",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.16",
"compression-webpack-plugin": "^2.0.0",
"css-loader": "^1.0.1",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-jest": "^21.27.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "0.0.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"pre-commit": "^1.2.2",
"prettier-eslint-cli": "^4.7.1",
"prettier-tslint": "^0.4.0",
"react": "^16.7.0-alpha.2",
"react-dom": "^16.7.0-alpha.2",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"style-loader": "^0.23.1",
"ts-jest": "^23.10.4",
"ts-loader": "^5.3.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.1.6",
"typescript-eslint-parser": "^20.1.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"url-loader": "^1.1.2",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.3.1"
},
"keywords": [
"react",
"redux",
"redux-peach",
"react-hooks",
"hooks",
"reactjs",
"javascript",
"state container",
"state manager"
]
}