forked from FormidableLabs/react-live
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.4 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
{
"name": "react-live",
"version": "1.10.1",
"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 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o .out",
"prebuild:lib": "rm -rf lib/*",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"test": "jest",
"test:typings": "typings-tester --dir typings"
},
"dependencies": {
"buble": "^0.19.3",
"core-js": "^2.4.1",
"dom-iterator": "^1.0.0",
"prismjs": "1.6",
"prop-types": "^15.5.8",
"unescape": "^0.2.0"
},
"devDependencies": {
"@storybook/addon-knobs": "^3.3.12",
"@storybook/react": "^3.3.12",
"@types/react": "^16.0.36",
"babel-core": "^6.26.0",
"babel-jest": "^22.2.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-env": "^1.3.2",
"babel-preset-react": "^6.23.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.2.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rollup": "^0.55.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify-es": "^0.0.1",
"typescript": "^2.7.1",
"typings-tester": "^0.3.1"
},
"files": [
"src",
"lib",
"dist",
"react-live.css",
"typings/react-live.d.ts"
],
"author": "Phil Plückthun <[email protected]> (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"
]
},
"sideEffects": false
}