-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
97 lines (97 loc) · 2.85 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
97
{
"name": "tweet-archive",
"version": "0.0.15",
"description": "A command line tool for working with tweet archives.",
"main": "dist/builder.js",
"scripts": {
"clean": "rm -rf dist ; mkdir dist",
"start": "cross-env BABEL_ENV=browser webpack-dev-server --config webpack.dev.config.js --host 0.0.0.0",
"build-app": "cross-env BABEL_ENV=browser webpack --config webpack.config.js",
"build-cli": "cross-env BABEL_ENV=cli babel src/cli -d dist/cli",
"build-lib": "cross-env BABEL_ENV=cli babel src/builder.js -d dist/",
"copy-site": "cp -pr src/site dist/site",
"build": "npm run clean && npm run copy-site && npm run build-cli && npm run build-lib && npm run build-app",
"test": "npm run build && cross-env BABEL_ENV=cli mocha --colors --reporter spec --require @babel/register test.js",
"ghpages": "node bin/ghpages.js"
},
"bin": {
"tweet-archive": "dist/cli/tweet-archive.js",
"tweet-archive-build": "dist/cli/tweet-archive-build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/docnow/tweet-archive.git"
},
"author": "Ed Summers",
"license": "MIT",
"bugs": {
"url": "https://github.com/docnow/tweet-archive/issues"
},
"homepage": "https://github.com/docnow/tweet-archive#readme",
"dependencies": {
"@babel/runtime": "^7.3.4",
"chalk": "^2.4.2",
"commander": "^2.19.0",
"css-loader": "^2.1.0",
"csv-parser": "^2.3.0",
"fs-extra": "^7.0.1",
"html-webpack-plugin": "^3.2.0",
"moment": "^2.24.0",
"opn": "^5.4.0",
"prompt": "^1.0.0",
"prop-types": "^15.7.2",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-tweet-embed": "^1.2.2",
"webpack": "^4.42.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.8.6",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"eslint": "^5.15.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-react": "^7.12.4",
"gh-pages": "^2.0.1",
"mocha": "^7.1.1",
"rc-slider": "^8.6.8",
"rimraf": "^2.6.3",
"shake.js": "^1.2.2",
"style-loader": "^0.23.1",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.0",
"webpack-merge": "^4.2.1"
},
"babel": {
"env": {
"browser": {
"presets": [
"@babel/preset-react",
"@babel/preset-env"
]
},
"cli": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": false
}
]
],
"plugins": [
"@babel/plugin-transform-runtime"
]
}
}
}
}