-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
126 lines (126 loc) · 3.76 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "custom-javaScript-for-websites-2",
"version": "3.4.12",
"description": "Run custom JavaScript on any website.",
"scripts": {
"analyze": "NODE_ENV=production node utils/analyze.js",
"build": "NODE_ENV=production node utils/build.js",
"deploy": "run-s build zip",
"zip": "zip -X --compression-method deflate -r build.zip build",
"prettier": "prettier --no-semi --single-quote --write",
"lint:ts": "standard --parser @typescript-eslint/parser --plugin typescript ./**/*.tsx",
"lint": "standard",
"lintfix": "yarn prettier 'src/**/*.{js,ts,tsx}' && yarn lint --fix && yarn lint:ts --fix",
"test:chrome-upload": "chrome-webstore-upload --help",
"start": "node utils/webserver.js",
"upload:chrome": "node -r dotenv/config ./node_modules/.bin/chrome-webstore-upload upload --source build.zip",
"publish:chrome": "node -r dotenv/config ./node_modules/.bin/chrome-webstore-upload publish",
"publish-extension": "yarn publish:chrome",
"release": "standard-version",
"test": "run-s lint build test:*"
},
"dependencies": {
"@material-ui/core": "4.12.4",
"@material-ui/styles": "4.11.5",
"antd": "4.20.5",
"chrome-extension-async": "3.4.1",
"clean-webpack-plugin": "4.0.0",
"js-beautify": "1.15.1",
"lodash.orderby": "4.6.0",
"lodash.uniqby": "4.7.0",
"mobx": "6.13.5",
"mobx-react": "7.6.0",
"object-sizeof": "1.6.3",
"query-string": "7.1.3",
"react": "17.0.2",
"react-ace": "9.5.0",
"react-dom": "17.0.2",
"react-router-dom": "6.28.0"
},
"devDependencies": {
"@types/chrome": "0.0.287",
"@types/jasmine": "3.10.18",
"@types/jest": "27.5.2",
"@types/react": "17.0.83",
"@types/react-dom": "17.0.26",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-eslint": "10.1.0",
"babel-plugin-import": "1.13.8",
"chrome-webstore-upload-cli": "2.2.2",
"codecov": "3.8.3",
"copy-webpack-plugin": "9.1.0",
"coveralls": "3.1.1",
"css-loader": "6.11.0",
"dotenv": "14.3.2",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.8",
"eslint": "7.32.0",
"eslint-plugin-typescript": "0.14.0",
"file-loader": "6.2.0",
"fork-ts-checker-webpack-plugin": "6.5.3",
"hard-source-webpack-plugin": "0.13.1",
"html-loader": "3.1.2",
"html-webpack-plugin": "5.6.3",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.5.0",
"mini-css-extract-plugin": "2.9.2",
"npm-run-all": "4.1.5",
"optimize-css-assets-webpack-plugin": "6.0.1",
"prettier": "2.8.8",
"progress-bar-webpack-plugin": "2.1.0",
"react-axe": "3.5.4",
"react-test-renderer": "17.0.2",
"regenerator-runtime": "0.14.1",
"samsam": "1.3.0",
"sinon": "12.0.1",
"sinon-chrome": "3.0.1",
"standard": "16.0.4",
"standard-version": "9.5.0",
"style-loader": "3.3.4",
"terser-webpack-plugin": "5.3.10",
"ts-jest": "27.1.5",
"ts-loader": "9.5.1",
"typescript": "4.9.5",
"web-ext": "6.8.0",
"webpack": "5.97.1",
"webpack-bundle-analyzer": "4.10.2",
"webpack-dev-server": "4.15.2",
"write-file-webpack-plugin": "4.5.1"
},
"lint-staged": {
"*.js": [
"yarn prettier",
"standard --fix"
],
"*.{ts,tsx}": [
"yarn prettier",
"standard --parser @typescript-eslint/parser --plugin typescript --fix"
],
"*.{json,css,md}": [
"yarn prettier"
]
},
"standard": {
"env": [
"jest"
],
"parser": "babel-eslint",
"ignore": [
"src/js/chrome-extension-async.js",
"src/lib"
],
"globals": [
"screen",
"Event",
"HTMLElement",
"HTMLInputElement",
"HTMLDivElement",
"page",
"browser",
"ace",
"chrome"
]
}
}