-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
98 lines (98 loc) · 3.41 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
93
94
95
96
97
98
{
"name": "respond-framework",
"version": "0.0.1",
"description": "A set of tools for building beautiful idiomatic React/Redux apps",
"main": "index.js",
"repository": "https://github.com/respond-framework/rudy",
"author": "James Gilmore <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "lerna run clean",
"test": "lerna run test",
"build": "lerna run build",
"lint": "eslint --config .eslintrc.js --ext=ts,tsx,js,jsx --cache --report-unused-disable-directives --max-warnings 0",
"check-types": "tsc -b config/tsconfig.json",
"is-pretty:root": "prettier '**/*' --list-different",
"is-pretty": "yarn run is-pretty:root && yarn run lerna run is-pretty",
"prettify:root": "prettier '**/*' --write",
"prettify": "yarn run prettify:root && yarn run lerna run prettify",
"vulnerabilities": "yarn audit",
"check": "yarn run is-pretty && yarn run lint . && yarn run check-types && yarn run build && yarn run test -- -- -w 1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@babel/runtime": "^7.6.0",
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-watch": "git://github.com/kmagiera/babel-watch.git",
"core-js": "^3.2.1",
"cross-env": "^5.0.1",
"css-loader": "^1.0.0",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-loader": "^3.0.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"flow-bin": "^0.78.0",
"husky": "^3.0.9",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"jest-localstorage-mock": "^2.4.0",
"lerna": "^3.15.0",
"lint-staged": "^9.4.2",
"micromatch": "^4.0.2",
"npm-publish-git": "git://github.com/hedgepigdaniel/npm-publish-git.git",
"prettier": "^1.18.2",
"prop-types": "^15.6.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-hot-loader": "^4.8.8",
"react-redux": "^7.1.0",
"react-test-renderer": "^16.1.1",
"redux": "^4.0.4",
"redux-thunk": "^2.2.0",
"regenerator-runtime": "^0.13.3",
"rimraf": "^2.6.1",
"source-map-loader": "^0.2.4",
"stats-webpack-plugin": "^0.6.1",
"terser": "^3.8.1",
"typescript": "^3.6.3",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "4.16.3",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.18.2",
"webpack-hot-server-middleware": "^0.5.0",
"write-file-webpack-plugin": "^4.1.0"
}
}