-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.07 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
{
"name": "react-hallmark",
"version": "0.1.0",
"description": "Component for highlighting",
"private": true,
"workspaces": ["packages/*"],
"repository": "https://github.com/jszombies/react-hallmark.git",
"homepage": "https://jszombies.github.io/react-hallmark/",
"author": {
"name": "Źmicier Jaraševič",
"email": "[email protected]>"
},
"keywords": [
"react",
"highlight",
"search",
"text",
"list",
"mark",
"autocomplete",
"regexp",
"tiny",
"component",
"lerna"
],
"license": "MIT",
"scripts": {
"build": "lerna run build --scope @react-hallmark/list",
"lint": "eslint packages --ext .js,.jsx --ignore-pattern lib/ -f table",
"test": "jest -c jest.json",
"start": "webpack-dev-server --config demo/webpack.config.js",
"demo:build": "webpack --config demo/webpack.config.js -p",
"prepublish": "yarn lint && yarn test && yarn build",
"gh:_build": "yarn demo:build && cp package.json demo",
"gh:_commit": "git checkout -b gh-pages-update && git add demo && git commit -m `update gh pages`",
"gh:_push": "git filter-branch -f --subdirectory-filter demo && git push origin gh-pages-update",
"gh:deploy": "yarn gh:_build && yarn gh:_commit && yarn gh:_push"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^1.1.11",
"jest": "^22.4.3",
"lerna": "^2.11.0",
"prop-types": "^15.6.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"style-loader": "^0.20.3",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
}
}