generated from Jonghakseo/chrome-extension-boilerplate-react-vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.13 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
{
"name": "gravity-data-collector-chrome-extension",
"version": "0.1.0",
"description": "Chrome extension to collect Gravity data from any website without installation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Smartesting/gravity-data-collector-chrome-extension.git"
},
"scripts": {
"tsc:watch": "tsc --watch",
"build": "tsc --noEmit && vite build",
"build:firefox": "tsc --noEmit && cross-env __FIREFOX__=true vite build",
"build:watch": "cross-env __DEV__=true vite build -w --mode development",
"build:firefox:watch": "cross-env __DEV__=true __FIREFOX__=true vite build -w --mode development",
"build:hmr": "rollup --config utils/reload/rollup.config.ts",
"wss": "node utils/reload/initReloadServer.js",
"dev": "pnpm build:hmr && (run-p wss build:watch)",
"dev:firefox": "pnpm build:hmr && (run-p wss build:firefox:watch)",
"test": "jest",
"commitlint": "commitlint --edit",
"lint": "eslint src --ext .ts",
"lint:fix": "pnpm lint -- --fix",
"prettier": "prettier . --write"
},
"type": "module",
"dependencies": {
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"construct-style-sheets-polyfill": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-typescript": "^8.5.0",
"@smartesting/gravity-data-collector": "^5.0.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.1",
"@types/chrome": "^0.0.224",
"@types/jest": "^29.0.3",
"@types/node": "^18.15.11",
"@types/react": "^18.2.29",
"@types/react-dom": "^18.2.13",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vitejs/plugin-react": "2.2.0",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"eslint": "^8.51.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.1.0",
"fs-extra": "^11.1.0",
"husky": "^8.0.3",
"jest": "^29.0.3",
"jest-chrome": "^0.8.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rollup": "^2.79.1",
"sass": "^1.62.1",
"ts-jest": "^29.0.2",
"ts-loader": "^9.4.2",
"tslib": "^2.6.2",
"typescript": "^4.9.5",
"vite": "^3.2.7",
"ws": "^8.13.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"packageManager": "[email protected]"
}