-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.51 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
{
"name": "@tabetalt/kit",
"version": "1.0.0",
"description": "Tabetalt's React-based Components",
"keywords": [
"style-guide",
"theme-ui",
"ui-kit",
"ui",
"kit",
"design",
"tabetalt"
],
"repository": "github:tabetalt/kit",
"license": "Apache-2.0",
"author": "Tabetalt.no AS",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist/",
"!**/*.stories.*"
],
"scripts": {
"test": "jest --passWithNoTests",
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"storybook": "start-storybook -p 9009 -s ./assets",
"build-storybook": "build-storybook -s ./assets",
"generate": "node scripts/generate-icons.js",
"lint": "eslint \"src/**/*.ts\"",
"pretty": "prettier --write ./src"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"dependencies": {
"@types/escape-html": "^1.0.0",
"escape-html": "^1.0.3",
"framer-motion": "^2.6.15",
"react-content-loader": "^5.1.1",
"react-modal": "^3.11.2",
"react-table": "^7.5.1",
"react-tag-autocomplete": "^6.1.0",
"slate": "^0.59.0",
"slate-history": "^0.59.0",
"slate-hyperscript": "^0.59.0",
"slate-react": "^0.59.0"
},
"devDependencies": {
"@storybook/addon-actions": "^6.0.0-rc.3",
"@storybook/addon-docs": "^6.0.0-rc.3",
"@storybook/addon-links": "^6.0.0-rc.3",
"@storybook/addons": "^6.0.0-rc.3",
"@storybook/preset-create-react-app": "^3.1.4",
"@storybook/react": "^6.0.0-rc.3",
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^10.2.1",
"@testing-library/user-event": "^12.0.2",
"@theme-ui/color": "^0.4.0-rc.1",
"@theme-ui/style-guide": "^0.4.0-rc.1",
"@types/jest": "^25.0.0",
"@types/node": "^14.0.22",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-modal": "^3.10.6",
"@types/react-table": "^7.0.23",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"ejs": "^3.1.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"framer-motion": "^2.6.15",
"h2x-core": "^1.1.1",
"h2x-plugin-jsx": "^1.2.0",
"h2x-types": "^1.1.0",
"husky": "^4.3.0",
"install-peers-cli": "^2.2.0",
"jest-axe": "^3.4.0",
"material-design-icons": "^3.0.1",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"react-table": "^7.5.1",
"theme-ui": "^0.4.0-rc.1",
"ts-loader": "^8.0.0",
"typescript": "^3.9.6",
"web-vitals": "^0.2.2"
},
"peerDependencies": {
"react": "^16",
"react-dom": "^16",
"theme-ui": "next"
},
"engines": {
"node": ">=10"
},
"publishConfig": {
"access": "public"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/npm"
]
}
}