-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.64 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.64 KB
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
{
"name": "github_reviews",
"version": "1.0.0",
"description": "",
"main": "index.js",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.1.3",
"@types/jest": "^29.5.4",
"@types/react-dom": "^18.2.7",
"@types/rollup-plugin-peer-deps-external": "^2.2.1",
"jest": "^29.6.4",
"rollup": "^3.28.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-scss": "^4.0.0",
"sass": "^1.66.1",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"scripts": {
"clean": "rm -Rf dist",
"test": "jest",
"prebuild": "npm run clean",
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"build:prod": "rollup --config rollup.config.ts --configPlugin typescript --environment INCLUDE_DEPS,BUILD:production"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/chrome": "^0.0.244",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.2",
"redux": "^4.2.1",
"typesafe-actions": "^5.1.0",
"webext-redux": "^2.1.9"
},
"jest": {
"preset": "ts-jest",
"cacheDirectory": "<rootDir>/.jest/cache",
"collectCoverage": true,
"coverageDirectory": "<rootDir>/coverage",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleDirectories": [
"node_modules",
"<rootDir>"
]
}
}