-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.71 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.71 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
{
"name": "tock-react-kit",
"version": "22.3.1-1",
"description": "React UI library for Tock Node chatbots",
"main": "build/tock-react-kit.umd.js",
"module": "build/tock-react-kit.esm.js",
"author": "François Nguyen <https://github.com/phurytw>",
"homepage": "https://github.com/theopenconversationkit/tock-react-kit",
"license": "MIT",
"scripts": {
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build": "rollup -c --environment BUILD:production",
"watch-build": "rollup -w -c --environment BUILD:production",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --fix --quiet",
"prepare": "rollup -c --environment BUILD:production",
"version": "auto-changelog -p && git add CHANGELOG.md",
"test": "echo 'Tests coming soon ...'",
"test-release": "np --preview",
"release": "np"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"deepmerge": "^4.2.2",
"linkifyjs": "^2.1.9",
"polished": "^3.6.5",
"react-feather": "^2.0.8",
"styled-tools": "^1.7.2"
},
"devDependencies": {
"@babel/core": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@emotion/eslint-plugin": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.0.0",
"@storybook/addon-essentials": "^7.4.0",
"@storybook/addon-interactions": "^7.4.0",
"@storybook/addon-links": "^7.4.0",
"@storybook/addons": "^7.4.0",
"@storybook/blocks": "^7.4.0",
"@storybook/builder-webpack5": "^7.4.0",
"@storybook/react": "^7.4.0",
"@storybook/react-webpack5": "^7.4.0",
"@storybook/testing-library": "^0.2.0",
"@types/node": "^14.0.26",
"@types/react-color": "^3.0.4",
"@types/react-dom": "^18.2.17",
"@types/storybook__react": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"auto-changelog": "^2.4.0",
"babel-loader": "^9.1.3",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-storybook": "^0.6.13",
"husky": "^4.2.5",
"np": "^8.0.4",
"prettier": "^2.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.29.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript": "^1.0.1",
"storybook": "^7.4.0",
"type-fest": "^4.3.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"react": ">=16.13",
"react-dom": ">=16.13"
},
"resolutions": {
"immer": "9.0.6",
"y18n": "5.0.8",
"lodash": "4.17.21",
"lodash-es": "4.17.21",
"set-value": "4.0.1",
"trim-newlines": "3.0.1",
"glob-parent": "5.1.2",
"normalize-url": "4.5.1",
"ssri": "8.0.1",
"react-dev-utils": "11.0.4",
"hosted-git-info": "3.0.8",
"browserslist": "4.17.1",
"merge-deep": "3.0.3",
"tar": "6.1.9",
"prismjs": "1.27.0",
"ini": "1.3.6",
"semver-regex": "3.1.4",
"nth-check": "2.0.1",
"elliptic": "6.5.4",
"highlight.js": "10.7.3",
"path-parse": "1.0.7",
"handlebars": "4.7.7",
"shelljs": "0.8.5",
"ansi-html": "0.0.8",
"postcss": "7.0.36",
"node-fetch": "2.6.7",
"ansi-regex": "5.0.1",
"trim": "0.0.3",
"minimist": "1.2.6",
"shell-quote": "1.7.3",
"got": "11.8.5",
"ejs": "3.1.7",
"terser": "5.14.2"
},
"auto-changelog": {
"includeBranch": [
"master"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}