forked from FormidableLabs/react-live
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.7 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
{
"name": "@zalkowitsch/react-live",
"version": "2.2.0",
"description": "Fork of React Live",
"main": "dist/react-live.cjs.js",
"typings": "./typings/react-live.d.ts",
"jsnext:main": "dist/react-live.es.js",
"module": "dist/react-live.es.js",
"license": "MIT",
"scripts": {
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o .out",
"prebuild:lib": "rm -rf lib/*",
"build": "rollup -c --bundleConfigAsCjs",
"prepublishOnly": "npm run build",
"deploy": "node deploy.js",
"test": "jest",
"test:typings": "typings-tester --dir typings"
},
"dependencies": {
"@babel/runtime": "7.24.4",
"buble": "^0.20.0",
"commander": "^12.0.0",
"core-js": "^3.36.1",
"dom-iterator": "^1.0.0",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"unescape": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-external-helpers": "7.24.1",
"@babel/plugin-transform-class-properties": "7.24.1",
"@babel/plugin-transform-object-rest-spread": "7.24.1",
"@babel/plugin-transform-runtime": "7.24.3",
"@babel/preset-env": "7.24.4",
"@babel/preset-react": "7.24.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "0.4.4",
"@storybook/addon-knobs": "^7.0.2",
"@storybook/react": "^8.0.6",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.2",
"@types/react": "^18.2.74",
"babel-jest": "^29.7.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"jest": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.14.1",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-uglify-es": "^0.0.1",
"typescript": "^5.4.4"
},
"files": [
"src",
"lib",
"dist",
"react-live.css",
"typings/react-live.d.ts"
],
"author": "Arkady Zalkowitsch <arkady@zalko.com> (https://github.com/arkadyzalko)",
"bugs": {
"url": "https://github.com/zalkowitsch/react-live/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/zalkowitsch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zalkowitsch/react-live.git"
},
"engines": {
"npm": ">= 2.0.0",
"node": ">= 0.12.0"
},
"keywords": [
"react",
"live",
"live edit",
"component playground",
"react live"
],
"jest": {
"rootDir": "./src",
"setupFiles": [
"../jest.setup.js"
],
"testURL": "http://localhost/"
},
"sideEffects": false
}