-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 2.74 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
{
"name": "modular-toolkit",
"version": "1.0.0",
"description": "Tools for composing React applications from decoupled modules",
"main": "index.js",
"scripts": {
"test": "jest",
"precommit": "lint-staged",
"postinstall": "lerna bootstrap",
"publish": "lerna publish ${@:1}",
"publish-beta": "lerna publish prerelease --preid beta --npm-tag beta",
"publish-beta-patch": "lerna publish prepatch --preid beta --npm-tag beta",
"publish-beta-minor": "lerna publish preminor --preid beta --npm-tag beta",
"publish-beta-major": "lerna publish premajor --preid beta --npm-tag beta"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/setupJest.js"
],
"transformIgnorePatterns": [
"<rootDir>.*(node_modules)(?!.*@mt-.*).*$"
],
"testURL": "https://www.motor-talk.de/forum.html"
},
"lint-staged": {
"linters": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add",
"jest --bail --findRelatedTests"
],
"*.css": [
"stylelint --fix",
"git add"
]
},
"ignore": [
"packages/demo-ui/index.js",
"packages/demo-module/index.js",
"packages/other-demo-module/index.js",
"packages/hocs/index.js",
"packages/selectors/index.js",
"packages/bricks/index.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/technology-ebay-de/modular-toolkit.git"
},
"author": "Patrick Hund <[email protected]>",
"contributors": [
"Ninja Maaß <[email protected]>",
"Daniel Schäfer <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@mt-testutils/mount-hoc": "^1.0.8",
"babel-eslint": "^10.0.1",
"cheerio": "^1.0.0-rc.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^4.16.0",
"eslint-config-motor-talk": "^5.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-jest": "^21.12.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.6.1",
"husky": "^0.14.3",
"jest": "^24.5.0",
"lerna": "^3.4.3",
"lint-staged": "^6.1.0",
"prettier": "^1.11.1",
"prop-types": "^15.6.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-redux": "^5.0.6",
"react-test-renderer": "^16.2.0",
"recompose": "^0.26.0",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"stylelint": "^9.10.1",
"stylelint-config-motor-talk": "^1.0.1"
}
}