forked from Faithlife/styled-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.95 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.95 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
{
"name": "@faithlife/styled-ui",
"version": "2.0.0",
"main": "index.js",
"repository": "git@github.com:Faithlife/styled-ui.git",
"author": "Dustin Masters <dustin.masters@faithlife.com>",
"license": "UNLICENSED",
"description": "UI components for use in Faithlife applications.",
"scripts": {
"deploy-site": "npm run catalog-build && storybook-to-ghpages --ci --existing-output-dir=catalog/build",
"eslint": "eslint ./components ./catalog --ext .js --ext .jsx",
"test": "npm run unit-test && npm run eslint && npm run stylelint",
"precommit": "prettier --write \"./components/**/*.{js,jsx}\" && npm run stylelint",
"build": "rimraf dist && webpack -p",
"prepublishOnly": "npm run build && npm test",
"stylelint": "stylelint ./components/**/*.jsx",
"unit-test": "cross-env NODE_ENV=test mocha -r babel-core/register ./tests/**/*.js",
"catalog-start": "catalog start",
"catalog-build": "catalog build --public-url /styled-ui"
},
"files": [
"dist/**"
],
"browserslist": [
"> 1%",
"last 2 versions"
],
"peerDependencies": {
"react": ">=16.3.0",
"react-dom": ">=16.3.0",
"styled-components": "^3.2.5"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"prop-types": "^15.6.1",
"react-bootstrap-typeahead": "^3.1.4",
"react-transition-group": "^2.4.0",
"reactstrap": "^6.1.0"
},
"devDependencies": {
"@storybook/storybook-deployer": "^2.3.0",
"ag-grid": "^18.0.1",
"ag-grid-enterprise": "^18.1.0",
"ag-grid-react": "^18.0.0",
"assert": "^1.4.1",
"autoprefixer": "^8.2.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-docgen": "^1.9.0",
"babel-plugin-styled-components": "^1.5.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"bootstrap": "^4.1.1",
"catalog": "^3.5.4",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-faithlife": "^3.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-webpack": "^0.9.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"esm": "^3.0.24",
"image-webpack-loader": "^4.3.1",
"mini-css-extract-plugin": "^0.4.1",
"mocha": "^5.1.1",
"node-sass": "^4.9.2",
"postcss-inline-svg": "^3.1.1",
"postcss-loader": "^2.1.6",
"prettier": "^1.13.7",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-dom-factories": "^1.0.2",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"styled-components": "^3.2.5",
"stylelint": "^9.1.3",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^0.8.1",
"stylelint-processor-styled-components": "^1.3.1",
"svg-colorize-loader": "^0.1.2",
"url-loader": "^1.0.1",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"webpack-node-externals": "^1.7.2"
}
}