-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
157 lines (157 loc) · 5.04 KB
/
package.json
File metadata and controls
157 lines (157 loc) · 5.04 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "@boldr/ui",
"author": "Steven Truesdell",
"version": "0.1.1",
"description": "UI components for Boldr",
"main": "./src/index.js",
"keywords": [
"react",
"boldr",
"react-ui",
"react-component"
],
"repository": {
"type": "git",
"url": "git+https://github.com/boldr/boldr-ui.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/boldr/boldr-ui/issues"
},
"homepage": "https://boldr.io/",
"scripts": {
"deploy": "cd docs && yarn build",
"build": "npm run build:es && npm run build:es:modules && npm run build:copy-files && npm run build:umd:dev && npm run build:umd:min",
"build:es": "cross-env NODE_ENV=production babel ./src --ignore *.test.js --out-dir ./build",
"build:es:modules": "cross-env NODE_ENV=production BABEL_ENV=modules babel ./src/index.js --out-file ./build/index.es.js",
"build:copy-files": "babel-node ./internal/scripts/copy-files.js",
"build:umd:dev": "webpack",
"build:umd:min": "cross-env NODE_ENV=production webpack",
"build:docs": "babel-node ./internal/scripts/build-api-docs.js",
"build:sass": "npm run sass && cp -r src/styles build && cp build/dist/boldrui.css build",
"build-storybook": "build-storybook",
"commit": "git-cz",
"prettier": "find . -name \"*.js\" | grep -v -f .eslintignore | xargs prettier --write --jsx-bracket-same-line=false --single-quote --trailing-comma all --print-width 100",
"clean": "npm run clean:build",
"clean:docs": "rimraf docs/api/*",
"clean:build": "rimraf build",
"lint": "eslint . --cache && echo \"eslint: no lint errors\"",
"prebuild": "npm run clean:build",
"precommit": "lint-staged --verbose",
"sass": "node-sass --output-style compressed src/styles/boldrui.scss -o build",
"start": "cd docs && npm start",
"storybook": "BABEL_ENV=story start-storybook -p 6006",
"flow": "flow",
"test": "jest --config jest.config.js",
"test:ci": "jest --config jest.config.js",
"publish": "npm run build && cd build && npm publish --access=public"
},
"peerDependencies": {
"react": "^15.6.0",
"react-dom": "^15.6.1",
"react-transition-group": "^2.2.0",
"styled-components": "^2.1.2"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash.assign": "^4.2.0",
"lodash.capitalize": "^4.2.1",
"lodash.clonedeep": "^4.5.0",
"lodash.isboolean": "^3.0.3",
"lodash.isequal": "^4.5.0",
"lodash.isfunction": "^3.0.8",
"lodash.isnumber": "^3.0.3",
"lodash.noop": "^3.0.1",
"lodash.omit": "^4.5.0",
"lodash.partial": "^4.2.1",
"lodash.take": "^4.1.1",
"lodash.throttle": "^4.1.1",
"lodash.trim": "^4.5.1",
"lodash.uniq": "^4.5.0",
"lodash.uniqueid": "^4.0.1",
"prop-types": "^15.5.10",
"rc-tabs": "^9.1.4",
"react-motion": "^0.5.0",
"react-visibility-sensor": "^3.10.1"
},
"devDependencies": {
"@storybook/addon-centered": "^3.2.7",
"@storybook/addon-info": "^3.2.9",
"@storybook/addon-knobs": "^3.2.8",
"@storybook/addon-options": "^3.2.6",
"@storybook/react": "^3.2.8",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-flow-react-proptypes": "^5.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.8",
"babel-preset-env": "^1.6.0",
"babel-preset-minify": "^0.2.0",
"babel-preset-react": "^6.24.1",
"codecov": "^2.3.0",
"commitizen": "^2.9.6",
"cross-env": "^5.0.5",
"cz-emoji": "^0.2.0",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.1",
"eslint": "^4.5.0",
"eslint-config-boldr": "^0.12.8",
"eventsource-polyfill": "^0.9.6",
"file-loader": "^0.11.2",
"flow-bin": "^0.53.1",
"flow-copy-source": "^1.2.1",
"flow-typed": "^2.1.5",
"fs-extra": "^4.0.1",
"glob": "^7.1.2",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"jest-enzyme": "^3.8.0",
"jest-styled-components": "^4.4.1",
"json-loader": "^0.5.7",
"lint-staged": "^4.0.4",
"node-sass": "^4.5.3",
"prettier": "^1.5.3",
"react": "^15.6.1",
"react-addons-perf": "^15.4.2",
"react-dom": "^15.6.1",
"react-router-dom": "^4.2.2",
"react-test-renderer": "^15.6.1",
"react-transition-group": "^2.2.0",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"sinon": "^3.2.1",
"styled-components": "^2.1.2",
"url-loader": "^0.5.9",
"webpack": "^3.5.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji"
},
"cz-emoji": {
"scopes": [
"component",
"docs",
"core",
"theme",
"styles",
"story",
"ci"
]
}
},
"lint-staged": {
"*.js": [
"npm run prettier",
"git add"
]
}
}