-
Notifications
You must be signed in to change notification settings - Fork 253
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.99 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.99 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
{
"name": "react-live",
"version": "2.3.0",
"description": "A production-focused playground for live editing React code",
"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",
"storybook:build": "build-storybook -o .out",
"prebuild:lib": "rm -rf lib/*",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"test": "jest",
"test:typings": "typings-tester --dir typings",
"prettier": "prettier --config .prettierrc --write \"./**/*.{js,css,html}\"",
"lint": "eslint --config .eslintrc \"./**/*.js\""
},
"dependencies": {
"@types/buble": "^0.20.0",
"buble": "0.19.6",
"core-js": "^3.14.0",
"dom-iterator": "^1.0.0",
"prism-react-renderer": "^1.2.1",
"prop-types": "^15.7.2",
"react-simple-code-editor": "^0.11.0",
"unescape": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"@storybook/addon-controls": "^6.3.6",
"@storybook/react": "^6.3.6",
"@types/react": "^16.0.36",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.16.0",
"eslint-config-formidable": "^3.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-react": "^7.7.0",
"jest": "^27.0.6",
"prettier": "^1.17.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rollup": "^2.55.1",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"styled-components": "^4.0.0-beta.8",
"typescript": "^2.9.2",
"typings-tester": "^0.3.1"
},
"files": [
"src",
"lib",
"dist",
"react-live.css",
"typings/react-live.d.ts"
],
"author": "Phil Plückthun <phil@plckthn.me> (https://github.com/philpl)",
"bugs": {
"url": "https://github.com/philpl/react-live/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/philpl/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
}