-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 4.55 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@inventures/react-lib",
"version": "0.10.15",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"publishConfig": {
"access": "public",
"tag": "latest",
"registry": "https://registry.npmjs.org/"
},
"files": [
"./**/*"
],
"dependencies": {
"@date-io/date-fns": "1.x",
"@material-ui/core": "4.11.4",
"@material-ui/icons": "4.11.2",
"@material-ui/lab": "4.0.0-alpha.57",
"@material-ui/pickers": "^3.2.10",
"@material-ui/styles": "4.11.4",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.15",
"@types/react": "^17.0.22",
"@types/react-dom": "^17.0.9",
"babel-loader": "8.1.0",
"browser-image-compression": "^1.0.16",
"clsx": "^1.1.1",
"date-fns": "^2.28.0",
"fuse.js": "^6.4.6",
"http-server": "^13.0.2",
"is_js": "^0.9.0",
"lodash": "^4.17.21",
"react-scripts": "^4.0.3",
"rut-helpers": "^0.1.1",
"rxjs": "^7.3.0",
"typescript": "~4.1.0"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"prepare": "install-peers",
"test": "react-scripts test",
"storybook": "start-storybook -p 9009",
"build-storybook": "npx build-storybook",
"publish:gh": "yarn build-storybook && gh-pages -d storybook-static",
"preversion": "yarn build:lib",
"postversion": "yarn changelog",
"changelog": "auto-changelog -p && git add CHANGELOG.md && git commit -m \"docs: update changelog\"",
"publish": "yarn build:lib && yarn publish:npm",
"prepublish:npm": "cp package.json dist/ && tar -czvf dist.tar.gz dist",
"publish:npm": "npm publish dist.tar.gz",
"postpublish:npm": "cp ./dist/package.json . && rimraf dist.tar.gz",
"lint": "tsc --noEmit && eslint ./src/ --ext .js,.ts,.tsx",
"lint:fix": "tsc --noEmit && eslint ./src/ --ext .js,.ts,.tsx --fix",
"build:lib": "yarn clean && yarn build:babel && yarn build:types && node ./scripts/copyTS.js && cp ./package.json ./dist && touch ./dist/.npmignore",
"build:babel": "yarn build:babel:cjs",
"build:babel:cjs": "BABEL_ENV=cjs babel --source-maps --extensions \".js,.ts,.tsx\" src --out-dir dist --presets=@babel/env",
"build:types": "tsc -p tsconfig.gen-dts.json",
"postbuild:lib": "copyfiles -u 1 \"src/**/*.svg\" dist",
"clean": "rimraf dist",
"develop": "yarn build:types && yarn build:babel:esm --skip-initial-build --watch --verbose",
"storybook:build": "npx build-storybook -s public"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-transform-typescript": "^7.15.4",
"@material-ui/system": "^4.12.1",
"@storybook/addon-a11y": "^6.2.5",
"@storybook/addon-actions": "^6.2.5",
"@storybook/addon-backgrounds": "^6.3.8",
"@storybook/addon-knobs": "^6.2.5",
"@storybook/addon-links": "^6.3.8",
"@storybook/addon-storyshots": "^6.2.5",
"@storybook/addon-storysource": "^6.3.8",
"@storybook/addon-viewport": "^6.3.8",
"@storybook/addons": "^6.2.5",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.2.5",
"@testing-library/react-hooks": "^7.0.2",
"@types/is": "^0.0.21",
"@types/lodash": "^4.14.175",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"@zeplin/cli": "^1.1.12",
"@zeplin/cli-connect-react-plugin": "^1.1.1",
"@zeplin/cli-connect-storybook-plugin": "^0.5.4",
"auto-changelog": "^2.3.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-typescript-to-proptypes": "^1.4.2",
"concurrently": "^6.2.1",
"copyfiles": "^2.4.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.2.3",
"install-peers-cli": "^2.2.0",
"prettier": "^2.4.1",
"react-test-renderer": "17.0.2",
"ts-loader": "^9.2.5"
},
"bit": {
"env": {
"compiler": "bit.envs/compilers/[email protected]"
},
"componentsDefaultDirectory": "lib/components/{name}",
"packageManager": "yarn"
}
}