-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.34 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
{
"name": "chrome-extension-boilerplate-react-vite",
"version": "1.0.22",
"description": "chrome extension boilerplate",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mrpmohiburrahman/similar-react-native-libraries.git"
},
"scripts": {
"clean": "rimraf dist && rimraf .turbo && turbo clean",
"build": "turbo build",
"build:firefox": "cross-env __FIREFOX__=true turbo build",
"dev-server": "pnpm -F hmr build && pnpm -F hmr dev-server",
"dev": "concurrently --kill-others \"cross-env __DEV__=true turbo dev --concurrency 20\" \"pnpm dev-server\"",
"dev:firefox": "concurrently --kill-others \"cross-env __DEV__=true __FIREFOX__=true turbo dev --concurrency 20\" \"pnpm dev-server\"",
"test": "turbo test",
"type-check": "turbo type-check",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"prettier": "turbo prettier",
"update:lastcommit": "node scripts/generateMetadata.js",
"prepare": "husky install"
},
"type": "module",
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/chrome": "^0.0.268",
"@types/node": "^20.12.11",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "8.56.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"semantic-release": "^24.0.0",
"tailwindcss": "^3.4.3",
"tslib": "^2.6.2",
"turbo": "^1.13.3",
"typescript": "5.2.2",
"vite": "^5.2.11",
"simple-git": "^3.25.0",
"husky": "^9.0.11"
},
"engines": {
"node": ">=18.12.0"
}
}