-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.86 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
{
"name": "granular-react",
"version": "1.0.0",
"description": "Yet another UI Toolkit for react apps.",
"main": "dist/bundle.cjs.js",
"module": "dist/esm/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "run-p compile:* bundler",
"bundler": "rollup -c",
"compile": "babel src",
"compile:cjs": "npm run compile -- --out-dir dist",
"compile:esm": "cross-env NODE_ENV=esm npm run compile -- --out-dir dist/esm",
"lint:prettier": "prettier-eslint '**/*.{js,jsx}' --write",
"storybook": "start-storybook",
"lint": "eslint '**/*.{js,jsx}'",
"lint:fix": "npm run lint -- --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{jsx,js}": [
"npm run lint:fix",
"git add"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@storybook/addon-info": "^5.2.1",
"@storybook/cli": "^5.2.1",
"@storybook/react": "^5.2.1",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.6",
"cross-env": "^6.0.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.5",
"lint-staged": "^9.4.0",
"npm-run-all": "^4.1.5",
"prettier-eslint": "^9.0.0",
"prettier-eslint-cli": "^5.0.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rollup": "^1.21.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2"
},
"dependencies": {
"blacklist": "^1.1.4",
"classnames": "^2.2.6"
}
}