forked from nsfw-filter/nsfw-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.12 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
90
91
92
93
94
{
"name": "nsfw-filter",
"version": "1.3.0",
"description": "Hide NSFW content from websites using this extension powered by AI! This extension replaces images that are NSFW with random images from Unsplash.",
"scripts": {
"lint": "eslint .",
"clean": "rimraf dist/src",
"test": "npm run test:unit && npm run test:e2e",
"test:e2e": "cross-env HEADLESS=false jest --no-cache -c ./test/jest.e2e.config.js",
"test:unit": "jest --no-cache -c ./test/jest.unit.config.js",
"build": "npm run clean && webpack --config webpack/webpack.prod.js",
"dev": "webpack --config webpack/webpack.dev.js",
"dev:firefox": "npm-run-all --parallel dev start:firefox",
"dev:chrome": "npm-run-all --parallel dev start:chrome",
"start:firefox": "web-ext run --source-dir ./dist/ --target=firefox-desktop",
"start:chrome": "web-ext run --source-dir ./dist/ --target=chromium"
},
"author": {
"name": "Navendu Pottekkat",
"email": "[email protected]",
"url": "http://navendu.me"
},
"contributors": [
{
"name": "Yegor Zaremba",
"url": "https://github.com/yegorzaremba"
}
],
"repository": {
"type": "git",
"url": "https://github.com/nsfw-filter/nsfw-filter"
},
"homepage": "https://github.com/nsfw-filter/nsfw-filter",
"license": "GPL-3.0-only",
"dependencies": {
"@tensorflow/tfjs": "2.6.0",
"antd": "4.6.6",
"lodash.clonedeep": "4.5.0",
"lodash.isequal": "4.5.0",
"lodash.mergewith": "4.6.2",
"nsfwjs": "2.3.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "7.2.1",
"redux": "4.0.5",
"reduxed-chrome-storage": "2.0.0",
"styled-components": "5.2.0"
},
"devDependencies": {
"@types/antd": "1.0.0",
"@types/chrome": "0.0.122",
"@types/react": "16.9.51",
"@types/react-dom": "16.9.8",
"@types/react-redux": "7.1.9",
"@types/styled-components": "5.1.3",
"@typescript-eslint/eslint-plugin": "3.8.0",
"antd-dayjs-webpack-plugin": "1.0.1",
"copy-webpack-plugin": "6.0.3",
"cross-env": "7.0.2",
"css-loader": "4.2.1",
"eslint": "7.5.0",
"eslint-config-standard": "14.1.1",
"eslint-config-standard-with-typescript": "18.0.2",
"eslint-plugin-better-styled-components": "1.1.2",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-import-helpers": "1.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.21.3",
"eslint-plugin-standard": "4.0.1",
"file-loader": "6.1.0",
"html-webpack-plugin": "4.3.0",
"jest": "26.4.2",
"mini-css-extract-plugin": "0.10.0",
"node-sass": "4.14.1",
"npm-run-all": "4.1.5",
"postcss-loader": "3.0.0",
"puppeteer": "5.3.1",
"purgecss-webpack-plugin": "3.0.0",
"resolve-url-loader": "3.1.1",
"rimraf": "3.0.2",
"sass-loader": "9.0.3",
"style-loader": "1.2.1",
"ts-jest": "26.4.1",
"ts-loader": "6.2.1",
"typescript": "3.9.7",
"web-ext": "5.2.0",
"webpack": "4.42.0",
"webpack-bundle-analyzer": "3.9.0",
"webpack-chrome-extension-reloader": "1.3.0",
"webpack-cli": "3.3.11",
"webpack-merge": "4.2.2"
}
}