forked from mannynotfound/react-tweet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.37 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
{
"name": "react-tweet",
"version": "1.2.0",
"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 --loose all ./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",
"babel-core": "^5.2.17",
"babel-loader": "~5.3.2",
"css-loader": "^0.16.0",
"ejs": "^2.3.1",
"extract-text-webpack-plugin": "~0.8.2",
"json-loader": "~0.5.3",
"node-libs-browser": "^0.5.0",
"node-sass": "^3.2.0",
"prop-types": "^15.5.8",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-hot-loader": "~1.3.0",
"sass-loader": "^2.0.1",
"style-loader": "^0.12.3",
"webpack": "~1.12.2",
"webpack-dev-server": "~1.12.0"
},
"dependencies": {
"babel": "~5.8.23",
"babel-runtime": "~5.8.20",
"twemoji": "^1.4.1",
"twitter-text": "^1.13.2"
}
}