forked from kufu/smarthr-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 2.99 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "smarthr-ui",
"description": "SmartHR ui components built with React.",
"version": "3.8.2",
"author": "SmartHR-UI Team",
"dependencies": {
"lodash.merge": "^4.6.1",
"lodash.range": "^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-links": "^5.1.7",
"@storybook/addon-viewport": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@storybook/cli": "^5.1.7",
"@storybook/react": "^5.0.11",
"@storybook/theming": "^5.1.7",
"@types/enzyme": "^3.9.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.12",
"@types/lodash.merge": "^4.6.4",
"@types/lodash.range": "^3.2.5",
"@types/react": "^16.8.16",
"@types/react-test-renderer": "^16.8.1",
"@types/storybook__addon-actions": "^3.4.3",
"@types/storybook__react": "^4.0.1",
"@types/styled-components": "^4.1.16",
"babel-loader": "^8.0.5",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.16.0",
"eslint-config-smarthr": "^1.0.2",
"fixpack": "^2.3.1",
"husky": "^2.2.0",
"jest": "^24.1.0",
"lint-staged": "^8.1.0",
"np": "5.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "16.8.6",
"styled-components": "^4.3.1",
"stylelint": "^10.1.0",
"stylelint-config-prettier": "^5.1.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.5.2",
"ts-jest": "^24.0.0",
"ts-loader": "^6.0.0",
"typescript": "^3.2.4"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "^4.2.0"
},
"bugs": {
"url": "https://github.com/kufu/smarthr-ui/issues"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"lib"
],
"homepage": "https://github.com/kufu/smarthr-ui#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"react",
"react-component",
"smarthr",
"typescript"
],
"license": "MIT",
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
]
},
"main": "lib/index.js",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kufu/smarthr-ui.git"
},
"scripts": {
"build": "tsc",
"build-storybook": "build-storybook",
"clean": "rimraf ./lib",
"fix": "fixpack",
"format": "eslint --fix 'src/**/*.ts{,x}'",
"lint": "run-p lint:*",
"lint:eslint": "eslint 'src/**/*.ts{,x}'",
"lint:style": "stylelint 'src/**/*.ts{,x}'",
"lint:tsc": "tsc --noEmit",
"prepublishOnly": "run-s clean lint build",
"release": "np",
"storybook": "start-storybook -p 6006",
"test": "jest"
},
"sideEffects": false,
"typings": "lib/index.d.ts"
}