forked from eramdam/BetterTweetDeck
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.32 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 4.32 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "bettertweetdeck",
"version": "4.0.3",
"description": "Adds some nice options on TweetDeck.",
"repository": {
"type": "git",
"url": "https://github.com/eramdam/BetterTweetDeck.git"
},
"author": "Damien Erambert",
"license": "MIT",
"bugs": {
"url": "https://github.com/eramdam/BetterTweetDeck/issues"
},
"scripts": {
"_start": "cross-env NODE_ENV=development webpack --watch --progress --env",
"start:firefox": "npm run _start -- browser=firefox",
"start:safari": "npm run _start -- browser=safari",
"start:chrome": "npm run _start -- browser=chrome",
"_build": "cross-env NODE_ENV=production webpack --progress --env",
"build:safari": "npm run _build -- browser=safari",
"build:firefox": "npm run _build -- browser=firefox",
"build:chrome": "npm run _build -- browser=chrome",
"_build:prod": "cross-env NODE_ENV=production webpack --progress --env",
"build:prod:safari": "npm run _build:prod -- browser=safari",
"build:prod:firefox": "npm run _build:prod -- browser=firefox",
"build:prod:chrome": "npm run _build:prod -- browser=chrome",
"fix": "eslint --fix . --ext .jsx,.js,.ts,.tsx",
"lint": "eslint . --ext .jsx,.js,.ts,.tsx",
"typecheck:watch": "tsc -p . --watch",
"typecheck": "tsc -p .",
"postinstall": "node-config-ts",
"run:firefox": "web-ext run -s dist",
"test": "npm run lint && npm run typecheck",
"release": "ts-node tools/release.ts",
"pack:safari": "node tools/update_safari_files.js && xcodebuild -project 'safari/Better TweetDeck for Safari/BetterTDeck for TweetDeck.xcodeproj/'",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{css,md,html,json}": "prettier --write"
},
"browserslist": [
"last 1 chrome versions",
"last 1 firefox versions",
"last 1 edge versions",
"last 1 safari versions"
],
"homepage": "https://github.com/eramdam/BetterTweetDeck",
"dependencies": {
"@emotion/css": "^11.1.3",
"@octokit/core": "^3.4.0",
"@types/archiver": "^5.1.0",
"@types/chalk": "^2.2.0",
"@types/color-convert": "^2.0.0",
"@types/emoji-mart": "^3.0.4",
"@types/file-saver": "^2.0.1",
"@types/hogan.js": "^3.0.0",
"@types/jquery": "^3.5.5",
"@types/lodash": "^4.14.168",
"@types/luxon": "^1.26.2",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-frame-component": "^4.1.1",
"@types/semver": "^7.3.4",
"@types/stylis": "^4.0.0",
"@types/twit": "^2.2.28",
"@types/webpack": "^4.41.26",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"archiver": "^5.3.0",
"chalk": "^4.1.0",
"color-convert": "^1.9.3",
"copy-webpack-plugin": "^8.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.1.1",
"dom-chef": "^4.2.2",
"emoji-mart": "^3.0.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.1.0",
"execa": "^4.1.0",
"file-loader": "^6.2.0",
"file-saver": "^2.0.5",
"fp-ts": "^2.9.5",
"generate-json-webpack-plugin": "^2.0.0",
"hogan.js": "^3.0.2",
"html-webpack-plugin": "^5.2.0",
"husky": "^5.1.3",
"io-ts": "^2.2.15",
"io-ts-reporters": "^1.2.2",
"lint-staged": "^10.5.4",
"lodash": "^4.17.21",
"luxon": "^1.26.0",
"monaco-editor-webpack-plugin": "^3.0.0",
"node-config-ts": "^3.1.0",
"polished": "^4.1.1",
"postcss-loader": "^5.1.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"prism-react-renderer": "^1.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-monaco-editor": "^0.42.0",
"semver": "^7.3.4",
"simple-plist": "^1.1.1",
"style-loader": "^2.0.0",
"stylis": "^4.0.7",
"ts-key-enum": "^2.0.7",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"twitter-regexps": "^3.1.1",
"typescript": "^4.2.3",
"url-loader": "^4.1.1",
"utility-types": "^3.10.0",
"web-ext": "^5.5.0",
"webextension-polyfill-ts": "^0.25.0",
"webpack": "^5.24.3",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"xcode": "^3.0.1"
}
}