forked from cyverse-archive/de-ui-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.36 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
{
"name": "@cyverse-de/ui-lib",
"version": "7.1.1",
"private": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"@date-fns/upgrade": "^1.0.3",
"classnames": "^2.2.6",
"date-fns": "^2.11.1",
"md5": "^2.2.1",
"numeral": "^2.0.6",
"react-highlighter": "^0.4.3",
"react-loading-overlay": "^1.0.1",
"react-scripts": "3.3.0",
"typescript": "^3.7.3"
},
"peerDependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"formik": "^2.2.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-select": "^2.0.0",
"typescript": "^3.7.3"
},
"scripts": {
"build": "rm -rf dist && NODE_ENV=production BABEL_ENV=cjs babel src --out-dir dist/cjs --copy-files --ignore __tests__,spec.js,test.js,__snapshots__ && NODE_ENV=production BABEL_ENV=esm babel src --out-dir dist/esm --copy-files --ignore __tests__,spec.js,test.js,__snapshots__",
"test": "react-scripts test",
"eject": "react-scripts eject",
"test:ci": "CI=true react-scripts test --env=jsdom --ci --testResultsProcessor ./node_modules/jest-junit-reporter",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"deploy-storybook": "storybook-to-ghpages",
"format": "prettier --write 'src/**/*.js' 'stories/**/*.js'"
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"bracketSpacing": true,
"arrowParens": "always",
"jsxBracketSameLine": false
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "https://github.com/cyverse-de/ui-lib.git"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@material-ui/core": "^4.7.2",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.35",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-console": "^1.2.1",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addon-storysource": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/react": "^5.3.19",
"@storybook/storybook-deployer": "^2.8.6",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.1",
"formik": "^2.2.6",
"husky": "^1.3.1",
"jest-junit-reporter": "^1.1.0",
"prettier": "2.0.5",
"pretty-quick": "^1.11.1",
"prop-types": "^15.7.2",
"react-select": "^2.0.0"
},
"description": "This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).",
"main": "dist/cjs/lib.js",
"module": "dist/esm/lib.js",
"author": "discoenv",
"sideEffects": false,
"license": "ISC"
}