forked from eramdam/BetterTweetDeck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.95 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": "BetterTweetDeck",
"version": "3.6.4",
"extension_version": "3.6.4",
"description": "Adds some nice options on TweetDeck to provide a better experience on the webapp when used on Chrome.",
"repository": {
"type": "git",
"url": "https://github.com/eramdam/BetterTweetDeck.git"
},
"author": "Damien Erambert",
"license": "MIT",
"bugs": {
"url": "https://github.com/eramdam/BetterTweetDeck/issues"
},
"scripts": {
"prerelease": "rimraf artifacts/*",
"start": "cross-env NODE_ENV=dev webpack --progress --hide-modules --watch --env.browser",
"build": "cross-env NODE_ENV=dev webpack --progress --hide-modules --env.browser",
"build:prod": "cross-env NODE_ENV=prod webpack --progress --hide-modules --env.browser",
"run:firefox": "web-ext run -s dist",
"lint": "eslint {src,tools,config}/**/*.js webpack.config.js && stylelint src/**/*.css",
"test": "npm run lint",
"release": "npm run build:prod -- chrome && npm run pack:chrome && npm run build:prod -- firefox && npm run pack:firefox",
"pack:chrome": "cross-env NODE_ENV=dev node tools/pack.js",
"pack:firefox": "cross-env NODE_ENV=dev web-ext build -s dist -a artifacts",
"update_emojis": "node tools/update_emojis.js",
"prepush": "npm run lint"
},
"homepage": "https://github.com/eramdam/BetterTweetDeck",
"dependencies": {
"apollo-fetch": "^0.7.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-env": "^1.6.1",
"chalk": "^2.3.0",
"clean-webpack-plugin": "^0.1.18",
"clipboard": "^1.7.1",
"config": "^1.29.4",
"copy-webpack-plugin": "^4.4.0",
"cross-env": "^5.1.3",
"crx": "3.2.1",
"css-loader": "^0.28.9",
"cssnano": "3.10.0",
"del": "3.0.0",
"domify": "1.4.0",
"dompurify": "^1.0.2",
"emoji-js": "3.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"fecha": ">=1.0.0",
"file-saver": "1.3.3",
"generate-json-webpack-plugin": "^0.2.2",
"jquery": "^3.3.1",
"lodash": "^4.17.5",
"lodash-webpack-plugin": "^0.11.4",
"marked": "^0.3.12",
"moduleraid": "^2.0.1",
"mustache": "2.3.0",
"needle": "^2.1.1",
"normalize.css": "7.0.0",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.1.0",
"postcss-nested": "^3.0.0",
"postcss-url": "^7.3.0",
"prismjs": "^1.11.0",
"promise-each": "2.2.0",
"query-string": "^5.1.0",
"reuse-promise": "1.1.0",
"rimraf": "^2.6.2",
"style-loader": "^0.20.1",
"uglifyjs-webpack-plugin": "^1.1.8",
"web-ext": "^2.4.0",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^2.10.0",
"xml-js": "^1.6.2",
"zip-webpack-plugin": "^2.0.0"
},
"devDependencies": {
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"husky": "^0.14.3",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^18.0.0",
"ws": "^4.0.0"
}
}