-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
{
"name": "react-balanced-columns",
"description": "Columns that self balance",
"version": "1.1.2",
"author": "Ilias Tsangaris",
"license": "ISC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"react",
"reactjs",
"column",
"balance"
],
"scripts": {
"build": "tsc",
"verification": "npm run lint",
"prepare": "npm run verification && npm run build",
"lint": "eslint src/**/*",
"lint:fix": "eslint src/**/* --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"peerDependencies": {
"react": "^16.8"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@storybook/addon-actions": "^5.0.10",
"@storybook/addon-info": "^5.0.10",
"@storybook/addon-knobs": "^5.0.10",
"@storybook/addon-links": "^5.0.10",
"@storybook/addons": "^5.0.10",
"@storybook/react": "^5.0.10",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/storybook__addon-knobs": "^5.0.0",
"@types/storybook__react": "^4.0.1",
"@typescript-eslint/parser": "^1.7.0",
"babel-loader": "^8.0.5",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"prettier": "1.17.0",
"pretty-quick": "^1.10.0",
"react-docgen-typescript-loader": "^3.1.0",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"source-map-loader": "^0.2.4",
"ts-loader": "^5.4.3",
"typescript": "^3.4.4",
"typescript-eslint-parser": "^22.0.0",
"webpack-cli": "^3.3.1"
}
}