-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.3 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
{
"name": "cra-webext-ts",
"description": "Web Extension Boilerplate powered by Create React App (CRA)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/pereslavtsev/cra-webext-ts.git"
},
"bugs": {
"url": "https://github.com/pereslavtsev/cra-webext-ts/issues"
},
"author": {
"name": "Vitaly Pereslavtsev",
"email": "[email protected]",
"url": "https://www.pereslavtsev.com"
},
"version": "1.0.1",
"keywords": [
"react",
"create-react-app",
"template",
"typescript",
"redux",
"reduxjs",
"react-redux",
"extension",
"webextension",
"web",
"web-ext"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "cross-env INLINE_RUNTIME_CHUNK=false rescripts build",
"dev": "node scripts/dev",
"lint:ext": "web-ext lint",
"package": "web-ext build",
"postinstall": "patch-package",
"start": "web-ext run",
"start:android": "yarn start -t firefox-android",
"start:chrome": "yarn start -t chromium",
"start:firefox": "yarn start -t firefox-desktop",
"test": "rescripts test"
},
"dependencies": {
"@reduxjs/toolkit": "^1.3.6",
"@rescripts/cli": "^0.0.14",
"@rescripts/rescript-env": "^0.0.12",
"@rescripts/utilities": "^0.0.7",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.9",
"@types/redux-logger": "^3.0.8",
"concurrently": "^5.2.0",
"copy-webpack-plugin": "^6.0.2",
"cross-env": "^7.0.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-devtools": "^4.7.0",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-scripts": "3.4.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"rimraf": "^3.0.2",
"sharp": "^0.25.4",
"typescript": "~3.7.2",
"wait-on": "^5.0.1",
"web-ext": "^4.2.0",
"webext-redux": "^2.1.7",
"webextension-polyfill": "^0.6.0"
}
}