forked from reveddit/reveddit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.95 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
{
"name": "reveddit",
"version": "2.0.16",
"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/reveddit/reveddit.git"
},
"keywords": [
"reveddit",
"removeddit",
"ceddit",
"reddit",
"comments",
"removed",
"deleted"
],
"author": "Rob Hawkins",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/reveddit/reveddit/issues"
},
"homepage": "http://www.reveddit.com",
"standard": {
"parser": "@babel/eslint-parser"
},
"dependencies": {
"@babel/runtime": "^7.20.7",
"@stripe/stripe-js": "^1.11.0",
"bottleneck": "^2.19.5",
"bowser": "^2.9.0",
"core-js": "3.27.1",
"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",
"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": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.2",
"babel-plugin-lodash": "^3.3.4",
"concurrently": "^4.1.1",
"copy-webpack-plugin": "^9.0.1",
"crypto": "^1.0.1",
"d3": "^5.9.2",
"del-cli": "^5.0.0",
"dotenv": "^8.0.0",
"eslint": "^8.31.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": "^7.0.1",
"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": "del 'dist/x-files/*.js' 'dist/x-files/*.js.map' 'dist/x-files/*.css' 'dist/index.html' 'dist/*.js' 'dist/*.js.map'"
},
"packageManager": "yarn@4.0.0-rc.25"
}