-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
131 lines (131 loc) · 4.68 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
{
"name": "badger-ui",
"description": "Theming framework for JSS based applications",
"version": "0.12.8",
"license": "MIT",
"keywords": [
"theming",
"react",
"appearance"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"author": {
"name": "Igor Szyporyn",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/IgorSzyporyn/badger-ui"
},
"bugs": {
"url": "https://github.com/IgorSzyporyn/badger-ui/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=15.14.0",
"npm": ">=7.7.6"
},
"scripts": {
"dev": "tsc --watch",
"build": "npm run build:pre && npm run builder:typescript && npm run build:post",
"build:pre": "rimraf dist",
"build:post": "npm run copy-typings",
"builder:typescript": "tsc",
"builder:rollup": "rollup -c",
"copy-typings": "copyfiles -u 1 \"./src/typings/*.d.ts\" dist",
"test": "npm run test:lint && npm run test:types && npm run test:jest",
"test:jest": "jest",
"test:generate-output": "jest --json --outputFile=.jest-test-results.json",
"test:types": "tsc --pretty --noEmit",
"test:lint": "eslint . --ext ts --ext tsx --ext js",
"test:lint-fix": "eslint --fix . --ext ts --ext tsx --ext js",
"github:release": "cross-env git push origin && git push origin --tags",
"github:commit-changelog": "git add CHANGELOG.md && git commit -m \"updated CHANGELOG.md\"",
"changelog:major": "npm run changelog:clean && changelog -M && npm run github:commit-changelog",
"changelog:minor": "npm run changelog:clean && changelog -m && npm run github:commit-changelog",
"changelog:patch": "npm run changelog:clean && changelog -p && npm run github:commit-changelog",
"changelog:clean": "rimraf CHANGELOG.md",
"release:major": "npm run changelog:major && npm version major && npm run github:release && npm run build && npm publish",
"release:minor": "npm run changelog:minor && npm version minor && npm run github:release && npm run build && npm publish",
"release:patch": "npm run changelog:patch && npm version patch && npm run github:release && npm run build && npm publish",
"storybook": "start-storybook -p 6006 --no-manager-cache",
"build-storybook": "build-storybook"
},
"dependencies": {
"@reach/observe-rect": "^1.2.0",
"badger-ui": "^0.12.1",
"color": "3.1.3",
"deepmerge": "4.2.2",
"framer-motion": "^4.1.17",
"lodash": "4.17.21",
"nanoid": "3.1.23",
"react": "17.0.2",
"react-dom": "17.0.2",
"resize-observer-polyfill": "^1.5.1",
"wcag-contrast": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^10.0.27",
"@etchteam/storybook-addon-status": "../storybook-addon-status",
"@material-ui/core": "^4.11.4",
"@storybook/addon-a11y": "^6.2.9",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-jest": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/react": "^6.2.9",
"@testing-library/react": "^11.2.7",
"@types/color": "3.0.1",
"@types/jest": "^26.0.23",
"@types/lodash": "4.14.169",
"@types/node": "15.0.3",
"@types/react": "17.0.5",
"@types/react-dom": "17.0.5",
"@types/styled-components": "5.1.9",
"@types/wcag-contrast": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.12.0",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"copyfiles": "2.3.0",
"cross-env": "^7.0.3",
"eslint": "7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-lodash-import": "file:eslint-rules/lodash-import",
"eslint-plugin-no-object-from-entries": "file:eslint-rules/no-object-from-entries",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"generate-changelog": "1.8.0",
"jest": "26.6.3",
"prettier": "2.3.0",
"rimraf": "3.0.2",
"storybook-addon-designs": "^6.0.0",
"storybook-addon-performance": "^0.15.2",
"storybook-facelift": "../storybook-facelift",
"styled-components": "^5.3.0",
"typescript": "3.9.6"
},
"resolutions": {
"@types/react": "^17.0.5",
"@types/styled-components": "^5.1.9"
}
}