-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.45 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.45 KB
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
{
"name": "@daonomic/ui",
"version": "20.1.0",
"description": "Base UI components for Daonomic services",
"main": "./lib/index.js",
"files": [
"lib"
],
"engines": {
"node": "^8.9.0",
"npm": "^5.5.1"
},
"scripts": {
"start": "start-storybook -p 9000",
"build": "rm -rf lib && cp -R source lib && find lib -name 'story.js' -exec rm {} \\; && babel lib -d lib",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"format": "prettier --write \"./source/**/*.{js,css,json,md}\"",
"test": "npm run test:unit && npm run test:lint",
"test:unit": "jest --verbose --passWithNoTests",
"test:lint": "eslint source",
"ensure-git-credentials": "git config --local user.name \"Dev\" && git config --local user.email \"dev@0v1se.com\"",
"precommit": "npm run ensure-git-credentials && lint-staged && npm t",
"prepublishOnly": "npm t && npm run build",
"postpublish": "npm run deploy-storybook"
},
"lint-staged": {
"*.{js,json,md,css}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/daonomic/daonomic-ui.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/daonomic/daonomic-ui/issues"
},
"homepage": "https://github.com/daonomic/daonomic-ui#readme",
"peerDependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.0",
"react": "^16.7.0",
"react-dom": "^16.7.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-class-properties": "^7.0.0",
"@babel/plugin-syntax-export-default-from": "^7.0.0",
"@babel/plugin-syntax-export-namespace-from": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@daonomic/eslint-config": "1.0.0",
"@sambego/storybook-state": "1.3.2",
"@storybook/addon-actions": "4.1.13",
"@storybook/addon-info": "4.1.13",
"@storybook/addons": "4.1.13",
"@storybook/react": "4.1.13",
"@storybook/storybook-deployer": "2.8.1",
"autoprefixer": "9.4.8",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.1.0",
"classnames": "2.2.6",
"css-loader": "1.0.1",
"eslint": "5.14.1",
"eslint-plugin-import": "2.16.0",
"faker": "4.1.0",
"husky": "0.14.3",
"jest": "24.1.0",
"lint-staged": "7.2.2",
"postcss-calc": "6.0.1",
"postcss-color-function": "4.0.1",
"postcss-custom-media": "6.0.0",
"postcss-custom-properties": "7.0.0",
"postcss-flexbugs-fixes": "3.3.1",
"postcss-import": "11.1.0",
"postcss-loader": "2.1.5",
"postcss-nesting": "6.0.0",
"postcss-selector-matches": "4.0.0",
"prettier": "1.16.4",
"prop-types": "15.6.2",
"react": "16.7.0",
"react-dom": "16.7.0",
"style-loader": "0.23.1",
"url-loader": "1.1.2",
"webpack-append": "0.1.2"
},
"dependencies": {
"focus-visible": "4.1.5",
"nanoid": "2.0.1",
"rc-tooltip": "3.7.3",
"react-modal": "^3.7.1",
"react-tabs": "3.0.0",
"react-text-mask": "5.4.3",
"text-mask-addons": "3.8.0",
"ultimate-pagination": "1.0.0"
}
}