-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.94 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
{
"name": "captain-fact-extension",
"version": "2.0.0",
"description": "http://captainfact.io Web Extension",
"scripts": {
"dev": "webpack --watch --config webpack/webpack.dev.js --env dev",
"dev:staging": "webpack --watch --config webpack/webpack.dev.js --env staging",
"build:production": "cd captain-fact-overlay-injector && npm run build:production && cd .. && webpack --config webpack/webpack.prod.js --env=production && npm run compress",
"build:staging": "cd captain-fact-overlay-injector && npm run build:staging && cd .. && webpack --config webpack/webpack.prod.js --env=staging ",
"build:dev": "cd captain-fact-overlay-injector && npm run build:dev && cd .. && webpack --config webpack/webpack.prod.js --env=dev",
"compress": "crx pack build -o CaptainFact_Extension.crx -p key.pem --zip-output CaptainFact_Extension.zip",
"clean": "rimraf build/ dev/ CaptainFact_Extension*.zip CaptainFact_Extension*.crx",
"test": "jest",
"wtest": "jest --watch",
"coverage": "jest --coverage",
"release": "npm run build:production && npm run compress",
"lint": "eslint app",
"lint:fix": "eslint app --fix",
"prettier": "prettier \"{app,chrome,scripts,webpack}/**/*.{js,jsx}\"",
"prettier:fix": "prettier --write \"{app,chrome,scripts,webpack}/**/*.{js,jsx}\""
},
"repository": {
"type": "git",
"url": "https://github.com/CaptainFact/captain-fact-extension"
},
"author": "Benjamin Piouffle <[email protected]>",
"license": "GPL-3.0-only",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.2",
"chromedriver": "^2.35.0",
"copy-webpack-plugin": "^11.0.0",
"coveralls": "^3.1.1",
"cross-env": "^3.1.3",
"crx": "^3.0.3",
"css-loader": "^6.7.3",
"css-modules-require-hook": "^4.2.3",
"eslint": "^8.37.0",
"eslint-plugin-jest": "^27.2.1",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "29.5.0",
"jest-webextension-mock": "3.8.9",
"jsdom": "^16.5.0",
"minimist": "^1.2.0",
"prettier": "^2.8.7",
"react-test-renderer": "^18.2.0",
"rimraf": "^3.0.0",
"shelljs": "^0.8.4",
"style-loader": "^3.3.2",
"template-ejs-loader": "^0.9.4",
"webpack": "^5.1.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1",
"webpack-merge": "^5.8.0",
"write-file-webpack-plugin": "^4.2.0"
},
"dependencies": {
"@apollo/client": "^3.7.11",
"@babel/polyfill": "^7.0.0",
"@fortawesome/free-solid-svg-icons": "^5.1.0-11",
"@fortawesome/react-fontawesome": "0.1.13",
"captain-fact-overlay-injector": "file:captain-fact-overlay-injector",
"classnames": "^2.1.3",
"graphql": "^16.6.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-tabs": "^6.0.0",
"voca": "^1.4.0"
}
}