-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.72 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
{
"name": "Bridge",
"version": "0.0.0",
"description": "New tab. For devs. F*ck you.",
"license": "DWTFYW",
"repository": {
"type": "git",
"url": "git://github.com/Sigsev/Bridge.git"
},
"scripts": {
"clean": "rm -rf dist",
"start": "babel-node bin/start",
"build": "npm run clean && NODE_ENV=production BUILD=true babel-node bin/build && cp templates/manifest.json templates/128.png dist && zip -r dist.zip dist/",
"lint": "eslint src api bin webpack config",
"server": "node -r babel-polyfill bin/api",
"pm2:setup": "pm2 deploy ecosystem.json production setup",
"pm2:deploy": "pm2 deploy ecosystem.json production",
"deploy": "npm run lint && npm run pm2:deploy",
"release": "webstore upload --source dist.zip --extension-id $EXTENSION_ID --client-id $CLIENT_ID --client-secret $CLIENT_SECRET --refresh-token $REFRESH_TOKEN --auto-publish",
"bump": "node bin/bump"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.2",
"cheerio": "^1.0.0-rc.2",
"classnames": "^2.2.5",
"cryptoicons-cdn": "^0.1.12",
"date-fns": "^1.29.0",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"got": "^11.8.2",
"gsap": "^1.18.5",
"linkifyjs": "^2.1.5",
"lodash": "^4.17.4",
"memory-cache": "^0.2.0",
"morgan": "^1.9.0",
"node-schedule": "^1.3.2",
"q": "^1.5.1",
"react": "^15.1.0",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^15.1.0",
"react-portal": "^3.0.0",
"react-redux": "^4.4.5",
"react-select": "^1.0.0-beta13",
"react-skycons": "0.3.0",
"react-sparklines": "^1.7.0",
"redux": "^3.5.2",
"redux-actions": "^0.9.1",
"redux-thunk": "^2.1.0",
"rss-parser": "^2.10.8",
"shortid": "^2.2.8",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chrome-webstore-upload-cli": "^1.1.1",
"css-loader": "^3.4.2",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-zavatta": "^6.0.2",
"eslint-config-zavatta-react": "^2.3.1",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^5.1.0",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"pm2": "^2.8.0",
"react-hot-loader": "next",
"react-svg-loader": "^2.1.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.42.0",
"webpack-dev-server": "^3.10.3"
}
}