-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.55 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
{
"name": "@timing71/browser-plugin",
"version": "1.4.0",
"description": "Timing71 Browser Plugin",
"main": "background.js",
"repository": "https://github.com/timing71/beta-chrome",
"author": "James Muscat <jamesremuscat@gmail.com>",
"license": "AGPL-3.0-or-later",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"@timing71/common": "^0.5.0",
"@zip.js/zip.js": "^2.6.0",
"dexie": "^3.2.2",
"file-saver": "^2.0.5",
"reconnecting-eventsource": "^1.6.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.2.0",
"eslint": "^8.0.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-flowtype": "^8.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.3.2",
"style-loader": "^3.2.1",
"webpack": "^5.52.1",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.2.0",
"webpack-merge": "^5.8.0"
},
"scripts": {
"clean": "rm -rf build dist",
"build": "yarn run clean && webpack --progress",
"build:ci": "webpack",
"start": "yarn run clean && webpack --watch"
},
"browserslist": "last 3 Chrome versions"
}