-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.2 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
{
"name": "browser-extension-react-ts-starter",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "run-s clean && vite",
"build": "run-s clean && tsc && vite build && run-s firefox-build",
"firefox-build": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node utils/scripts/mv3ToMv2Build.ts",
"clean": "run-p clean:*",
"clean:dist": "rimraf dist",
"clean:dist_firefox": "rimraf dist_firefox",
"ci:test": "run-s ci:test:*",
"ci:test:lint": "run-s lint",
"ci:test:unit": "run-s \" test --ci --reporters=\"default\" --reporters=\"github-actions\" \"",
"ci:test:types": "run-s test:types",
"format": "run-p format:*",
"format:eslint": "run-s \" lint:eslint --fix \"",
"format:prettier": "run-s \" lint:prettier --write \"",
"format:stylelint": "run-s \" lint:stylelint --fix \"",
"lint": "run-p lint:*",
"lint:eslint": "eslint . --ext .js,.ts,.tsx --max-warnings 0 --ignore-path .gitignore",
"lint:prettier": "prettier \"**/*.(md|json|yml)\" --ignore-path .gitignore --check",
"lint:stylelint": "stylelint \"**/*.css\" --ignore-path .gitignore",
"test": "jest",
"test:types": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@eduardoac-skimlinks/webext-redux": "3.0.1-release-candidate",
"@reduxjs/toolkit": "1.8.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "7.2.8",
"redux-persist-webextension-storage": "1.0.2",
"reduxjs-toolkit-persist": "7.2.1",
"webextension-polyfill": "0.9.0"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@crxjs/vite-plugin": "1.0.13",
"@ryansonshine/commitizen": "4.2.8",
"@ryansonshine/cz-conventional-changelog": "3.3.4",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.3.0",
"@testing-library/user-event": "14.4.3",
"@types/fs-extra": "9.0.13",
"@types/glob": "7.2.0",
"@types/jest": "28.1.6",
"@types/lodash": "4.14.182",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/redux-persist-webextension-storage": "1.0.0",
"@types/webextension-polyfill": "0.9.0",
"@typescript-eslint/eslint-plugin": "5.31.0",
"@typescript-eslint/parser": "5.31.0",
"@vitejs/plugin-react": "1.3.2",
"autoprefixer": "10.4.8",
"eslint": "8.17.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"glob": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jest": "28.1.3",
"jest-chrome": "0.7.2",
"jest-environment-jsdom": "28.1.3",
"lodash": "4.17.21",
"nano-staged": "0.8.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.16",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"simple-git-hooks": "2.8.0",
"stylelint": "14.10.0",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard": "26.0.0",
"tailwindcss": "3.1.8",
"ts-jest": "28.0.7",
"typescript": "4.7.4",
"vite": "2.9.14"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
}
}