-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "react-cdx",
"version": "0.4.4",
"description": "Code snippet preview and interactions for React.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": "[email protected]:kettanaito/react-snippet.git",
"author": "Artem Zakharchenko <[email protected]>",
"license": "MIT",
"files": [
"lib",
"themes",
"README.md"
],
"scripts": {
"test": "jest",
"build": "rimraf ./lib && rollup -c rollup.config.ts",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepublishOnly": "yarn test && yarn build"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@storybook/addon-actions": "^6.2.1",
"@storybook/addon-essentials": "^6.2.1",
"@storybook/addon-links": "^6.2.1",
"@storybook/react": "^6.2.1",
"@types/jest": "^26.0.22",
"babel-loader": "^8.2.2",
"jest": "^26.6.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.44.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/react": "^17.0.3",
"prism-react-renderer": "^1.2.0"
},
"peerDependencies": {
"react": "^17.0.0"
}
}