-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
85 lines (85 loc) · 2.46 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
{
"name": "react-floki",
"version": "1.0.96",
"description": "A React component, container and test generation library",
"repository": {
"type": "git",
"url": "git://github.com/wednesday-solutions/react-floki.git"
},
"engines": {
"npm": ">=5",
"node": ">=8.15.1"
},
"author": "Wednesday Solutions",
"license": "MIT",
"scripts": {
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "stylelint app/**/*.js",
"lint:eslint": "eslint --ignore-path .eslintignore --ignore-pattern internals/scripts",
"lint:eslint:fix": "eslint --ignore-path .eslintignore --ignore-pattern internals/scripts --fix",
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged",
"pretest": "#npm run test:clean && npm run lint",
"test:clean": "rimraf ./coverage",
"test": "jest --coverage",
"test:watch": "jest --watchAll",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prettify": "prettier --write",
"initialize": "git checkout --orphan temp-branch && git add -A && git commit -m 'Initial commit' && git branch -D master && git branch -m master"
},
"lint-staged": {
"*.js": [
"npm run lint:eslint:fix",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"keywords": [
"react",
"test",
"generator",
"cli",
"jest",
"container",
"component"
],
"pre-commit": "lint:staged",
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"dependencies": {
"babel-eslint": "10.0.1",
"circular-dependency-plugin": "5.0.2",
"coveralls": "3.0.3",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-webpack": "0.11.1",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"json": "^9.0.6",
"lint-staged": "8.1.5",
"minimist": "1.2.3",
"node-plop": "0.18.0",
"plop": "^2.5.2",
"pre-commit": "1.2.2",
"prettier": "1.17.0",
"prettier-config-standard": "^1.0.1",
"redux-saga": "^1.1.1",
"shelljs": "^0.8.3"
},
"@babel/cli": "7.4.3",
"bin": {
"react-generate": "bin/react-generate.js"
}
}