forked from reveddit/reveddit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.86 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
{
"name": "revddit",
"version": "2.0.15",
"description": "Review removed content on reddit user pages and discover whether it was removed by automod or by a mod.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/rhaksw/revddit.git"
},
"keywords": [
"reddit",
"comments",
"removed",
"deleted"
],
"author": "Rob Hawkins",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/rhaksw/revddit/issues"
},
"homepage": "http://revddit.com",
"standard": {
"parser": "babel-eslint"
},
"dependencies": {
"@babel/polyfill": "^7.10.1",
"@babel/runtime": "^7.10.2",
"@stripe/stripe-js": "^1.11.0",
"bottleneck": "^2.19.5",
"bowser": "^2.9.0",
"github-fork-ribbon-css": "^0.2.3",
"react": "^16.12.0",
"react-day-picker": "^7.4.8",
"react-dom": "^16.12.0",
"react-modal": "^3.8.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"snuownd": "git+https://github.com/JordanMilne/snuownd.git",
"stripe": "^8.131.1",
"unstated": "^2.1.1",
"whatwg-fetch": "^2.0.4",
"workbox-precaching": "^6.0.2",
"workbox-routing": "^6.0.2",
"workbox-webpack-plugin": "^6.0.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"concurrently": "^4.1.1",
"copy-webpack-plugin": "^9.0.1",
"crypto": "^1.0.1",
"d3": "^5.9.2",
"dotenv": "^8.0.0",
"fs": "^0.0.1-security",
"history": "^4.7.2",
"html-webpack-plugin": "^5.3.2",
"html-webpack-tags-plugin": "^2.0.17",
"lodash-webpack-plugin": "^0.11.6",
"netlify-lambda": "^1.4.13",
"node-sass": "^6.0.1",
"rimraf": "^3.0.2",
"scroll-to-element": "^2.0.2",
"standard": "^11.0.1",
"svg-url-loader": "^6.0.0",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"start-all": "concurrently \"yarn start\" \"yarn lambda-serve\"",
"start": "yarn build-sass; webpack serve --mode development --host 0.0.0.0",
"build": "yarn clean; yarn build-sass; webpack --mode production && yarn lambda-build",
"build-sass": "node-sass --style compressed src/sass/index.sass dist/x-files/main.css",
"lambda-serve": "netlify-lambda serve lambda-src",
"lambda-build": "netlify-lambda build lambda-src",
"clean": "rimraf dist/x-files dist/index.html dist/*.css dist/*.js dist/*.js.map"
},
"packageManager": "yarn@3.0.0"
}