-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 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
{
"name": "react-tweet",
"version": "1.7.1",
"description": "React.js component for rendering tweets as they are presented on Twitter.com",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run prepublish",
"prepublish": "npm run build:js",
"build:js": "babel --plugins transform-runtime ./src/components -d ./lib",
"start": "webpack-dev-server --hot --inline",
"build-dev": "webpack -d"
},
"repository": {
"type": "git",
"url": "https://github.com/artnotfound/react-tweet"
},
"author": "Manny404",
"license": "MIT",
"homepage": "http://art404.com",
"peerDependencies": {
"react": "^15.6.2",
"react-dom": "^15.6.2",
"prop-types": "^15.5.8"
},
"devDependencies": {
"autoprefixer-core": "5.1.11",
"css-loader": "0.16.0",
"ejs": "2.5.5",
"extract-text-webpack-plugin": "0.8.2",
"json-loader": "0.5.3",
"node-libs-browser": "0.5.0",
"prop-types": "15.5.8",
"react": "15.6.2",
"react-dom": "15.6.2",
"react-hot-loader": "1.3.0",
"style-loader": "0.12.3",
"webpack": "1.12.2",
"webpack-dev-server": "1.12.0"
},
"dependencies": {
"babel": "6.2.4",
"babel-cli": "6.2.0",
"babel-core": "6.26.0",
"babel-loader": "6.2.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"react-video-wrapper": "1.0.3",
"twemoji": "1.4.1",
"twitter-text": "1.13.2"
}
}