-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.09 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
95
{
"name": "create-react-extension",
"version": "0.1.0",
"description": "Set up a modern web extension by running one command.",
"main": "index.js",
"keywords": [
"react",
"typescript",
"tailwindcss",
"chrome extension",
"firefox extension",
"web extension",
"browser extension"
],
"author": "Rakesh Paul<[email protected]>",
"license": "ISC",
"scripts": {
"build": "cross-env NODE_ENV=production node ./scripts/build.js",
"build:dev": "cross-env NODE_ENV=development node ./scripts/build.js",
"build:chrome": "npm-run-all clean:chrome 'build -- --out-dir ./dist/chrome'",
"dev:chrome": "npm-run-all clean:chrome 'build:dev -- --out-dir ./dist/chrome'",
"build:firefox": "npm-run-all clean:firefox 'build -- --out-dir ./dist/firefox'",
"dev:firefox": "npm-run-all clean:firefox 'build:dev -- --out-dir ./dist/firefox'",
"clean": "npm-run-all --parallel clean:chorome clean:firefox",
"clean:chrome": "rimraf dist/chrome",
"clean:firefox": "rimraf dist/firefox",
"lint": "eslint --ignore-path .eslintignore --ext .js,.jsx,.ts,.tsx ./",
"pretty-quick": "pretty-quick",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|jsx|tsx|ts)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"validate": "npm-run-all --parallel check-format lint build"
},
"dependencies": {
"ramda": "^0.27.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"tailwindcss": "^1.4.4"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@svgr/parcel-plugin-svgr": "^5.4.0",
"@testing-library/react": "^10.0.4",
"@types/chrome": "0.0.106",
"@types/node": "^12.0.0",
"@types/ramda": "^0.27.4",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"cross-env": "^7.0.2",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.9.0",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^4.2.5",
"jest": "^26.0.0",
"lint-staged": "^10.2.2",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.3.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"typescript": "^3.8.3",
"web-ext": "^4.2.0",
"web-ext-types": "^3.2.1",
"webextension-polyfill": "^0.6.0",
"yargs": "^15.3.1"
},
"staticFiles": {
"staticPath": [
{
"staticPath": "icons",
"staticOutDir": "icons"
},
{
"outDirPattern": "**/chrome",
"staticPath": "chrome"
},
{
"outDirPattern": "**/firefox",
"staticPath": "firefox"
}
],
"watcherGlob": "**"
}
}