-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.6 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
{
"name": "Purity-Vision-Extension",
"version": "1.3.2",
"description": "browser extension for hiding NSFW images",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack -w --config webpack.dev.js",
"prod-dev": "webpack -w --config webpack.prod.js",
"dev-firefox": "webpack --env target=firefox --config webpack.dev.js",
"build-firefox": "webpack --env target=firefox --config webpack.prod.js",
"test": "jest --config=jest.config.js",
"lint": "standard",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"ts-standard": {
"project": "./tsconfig.json"
},
"author": "Gradey Cullins",
"homepage": "https://github.com/aeksco/react-typescript-chrome-extension-starter#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/chrome": "^0.0.124",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.191",
"@types/node": "^14.11.8",
"@types/react": "^17.0.2",
"@types/react-dom": "^18.2.4",
"@types/react-test-renderer": "^17.0.1",
"@types/webextension-polyfill": "^0.9.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"autoprefixer": "^10.4.1",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"babel-jest": "^26.5.2",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^4.3.0",
"css-to-string-loader": "^0.1.3",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.44.0",
"eslint-plugin-react": "^7.32.2",
"raw-loader": "^4.0.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.5",
"ts-standard": "^12.0.2",
"typescript": "^4.0.3",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mui/icons-material": "^5.14.1",
"@mui/material": "^5.13.4",
"lodash": "^4.17.21",
"react": "18",
"react-dom": "18",
"webextension-polyfill": "^0.9.0"
}
}