-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
83 lines (83 loc) · 2.27 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
{
"private": true,
"description": "The React Union project is a collection of tools that allow you to build modern React applications for content management systems or enterprise portals.",
"keywords": [
"react",
"redux",
"bootstrapper",
"cms",
"hybrid",
"mix",
"mixed",
"standalone",
"sitecore",
"liferay",
"wordpress",
"drupal",
"umbraco",
"joomla",
"magento",
"adobe experience manager"
],
"author": "Tomas Konrady <tomas.konrady@lundegaard.eu>",
"contributors": [
"Tomas Konrady <tomas.konrady@lundegaard.eu>",
"Vaclav Jancarik <vaclav.jancarik@lundegaard.eu>",
"Lukas Sulik <lukas.sulik@lundegaard.eu>",
"Jakub Kohout <jakub.kohout@lundegaard.eu>"
],
"repository": "https://github.com/lundegaard/react-union",
"license": "UNLICENSED",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/cli": "^7.11.6",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-preset-react-union": "^0.20.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.4.0",
"eslint-config-react-union": "^0.20.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-react": "^7.20.3",
"husky": "^3.0.8",
"jest": "^24.0.0",
"lerna": "^3.22.1",
"lint-staged": "^9.4.1",
"prettier": "^2.0.5",
"ramda": "^0.27.0",
"ramda-extension": "^0.10.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-terser": "^5.1.2"
},
"workspaces": [
"packages/*",
"boilerplates/*",
"boilerplates/*/packages/*"
],
"scripts": {
"lint": "eslint --ext .js ./",
"lint:fix": "yarn lint --fix",
"test": "jest",
"build": "lerna exec --scope react-union -- rollup -c=../../rollup.config.js",
"prepublish": "yarn build",
"publishAll": "lerna publish --preid=ci"
},
"lint-staged": {
"(packages|boilerplates)/**/*.js": [
"prettier --write",
"yarn lint:fix",
"git add"
]
}
}