-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.55 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.55 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
{
"name": "@xlnt/paint",
"version": "0.36.5",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"start": "start-storybook -p 9009 -s public --ci",
"build": "yarn pika build",
"build:storybook": "build-storybook -s public -o build --quiet",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "yarn eslint 'src/**/*.{js,jsx,ts,tsx,json,mdx}'",
"auto:version": "npm version `auto version` -m 'version: %s [skip ci]'",
"auto:publish": "npm publish pkg --access public && git push --follow-tags --set-upstream origin $branch",
"release": "auto changelog && yarn auto:version && yarn build && yarn auto:publish && auto release"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,mdx}": [
"eslint --fix"
]
},
"dependencies": {
"@react-aria/button": "^3.2.1",
"@react-aria/focus": "^3.2.0",
"@react-aria/interactions": "^3.2.0",
"@react-aria/utils": "^3.2.0",
"classnames": "^2.2.6",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-merge-refs": "^1.0.0",
"react-scripts": "3.4.3",
"react-use": "^15.3.2",
"typescript": "3.7.2",
"webfontloader": "^1.6.28"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@auto-it/conventional-commits": "^9.47.1",
"@auto-it/first-time-contributor": "^9.47.1",
"@auto-it/released": "^9.47.1",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-copy-assets": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@react-types/button": "^3.2.0",
"@storybook/addon-a11y": "^5.3.19",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-info": "^5.3.19",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addon-viewport": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/preset-create-react-app": "^3.1.3",
"@storybook/react": "^5.3.19",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/classnames": "^2.2.10",
"@types/jest": "^24.0.0",
"@types/node": "^14.6.2",
"@types/react": "^16.9.48",
"@types/react-dom": "^16.9.0",
"@types/webfontloader": "^1.6.32",
"auto": "^9.47.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.1.1",
"storybook-addon-designs": "^5.4.0",
"tailwindcss": "^1.7.6",
"tailwindcss-plugins": "^0.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": "xlnt/paint",
"author": "xlnt-matt <matt@xlnt.co>",
"auto": {
"plugins": [
"npm",
"conventional-commits",
"first-time-contributor",
"released"
]
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-copy-assets",
{
"files": [
"src/styles/",
"src/assets",
"tailwind.config.js"
]
}
]
]
}
}