-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.68 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
{
"name": "react-logical-ui",
"version": "1.0.0",
"description": "Logical UI library for ReactJS",
"main": "build/bundle.js",
"scripts": {
"start": "npm-run-all --parallel docz:dev rollup:dev",
"build": "npm-run-all rollup:build docz:build",
"rollup:dev": "rollup -c -w/--watch",
"rollup:build": "rollup -c",
"docz:dev": "docz dev",
"docz:build": "docz build",
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.js": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jozefpetro/react-logical-ui.git"
},
"keywords": [
"ReactJS",
"logical",
"ui",
"library"
],
"author": "SudoLab",
"license": "MIT",
"bugs": {
"url": "https://github.com/jozefpetro/react-logical-ui/issues"
},
"homepage": "https://github.com/jozefpetro/react-logical-ui#readme",
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.5.0",
"react-dom": "^16.5.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-3": "^7.0.0",
"babel-eslint": "^9.0.0",
"docz": "^0.11.1",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"npm-run-all": "^4.1.3",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-node-resolve": "^3.4.0"
}
}