-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
116 lines (116 loc) · 3.56 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "clean-start",
"version": "0.41.3",
"description": "Open source new tab extension",
"private": true,
"type": "module",
"engines": {
"node": ">= 20.x",
"npm": ">= 10.x"
},
"scripts": {
"build:extension": "cross-env BUILD_TYPE=extension tsc && vite build",
"build": "tsc && vite build",
"clean": "rm -rf ./build",
"dev": "vite serve",
"lint": "npm run lint:eslint",
"lint:eslint": "npx eslint . --cache",
"postbuild:extension": "rm ./build/_headers ./build/_redirects ./src/index.html ./build/*.map && npm run zip",
"postbuild": "rm ./src/index.html",
"poststart": "npm run postbuild",
"prebuild:extension": "npm run clean && cp ./src/extension.html ./src/index.html",
"prebuild": "npm run clean && npm install && cp ./src/pwa.html ./src/index.html",
"prestart": "npm run prebuild",
"prettier": "prettier --check \"**/*.{ts,tsx}\"",
"preview": "vite preview",
"start": "cross-env NODE_ENV=development concurrently 'npm run build -- --watch' 'npm run wrangler-pages-dev'",
"test": "echo \"Error: no test specified\" && exit 1",
"typecheck": "tsc --noEmit",
"wrangler-pages-dev": "wrangler pages dev --live-reload true --local true ./build",
"zip": "cd build && zip -r clean-start-extension.zip ./"
},
"keywords": [],
"repository": {
"url": "https://github.com/mikesprague/clean-start"
},
"author": {
"name": "Michael Sprague",
"email": "[email protected]"
},
"homepage": "https://cleanstart.page",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikesprague/clean-start/issues"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.7.2",
"@fortawesome/free-brands-svg-icons": "6.7.2",
"@fortawesome/free-solid-svg-icons": "6.7.2",
"@fortawesome/react-fontawesome": "0.2.2",
"@mantine/core": "7.15.3",
"@mantine/hooks": "7.15.3",
"@rwh/keystrokes": "1.5.6",
"cheerio": "1.0.0",
"dayjs": "1.11.13",
"dompurify": "3.2.3",
"he": "1.2.0",
"jotai": "2.11.0",
"nanoid": "5.0.9",
"prop-types": "15.8.1",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@eslint/js": "^9.18.0",
"@types/dompurify": "3.2.0",
"@types/he": "1.2.3",
"@types/react": "19.0.5",
"@types/react-dom": "19.0.3",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"@vitejs/plugin-react-swc": "3.7.2",
"autoprefixer": "10.4.20",
"concurrently": "9.1.2",
"cross-env": "7.0.3",
"cssnano": "7.0.6",
"cz-git": "1.11.0",
"eslint": "^9.18.0",
"eslint-config-mantine": "4.0.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"globals": "^15.14.0",
"postcss": "8.4.49",
"postcss-cli": "11.0.0",
"postcss-preset-mantine": "1.17.0",
"postcss-simple-vars": "7.0.1",
"prettier": "3.4.2",
"prop-types": "15.8.1",
"typescript": "5.7.3",
"typescript-eslint": "^8.19.1",
"vite": "6.0.11",
"vite-plugin-html": "3.2.2",
"vite-plugin-pwa": "0.21.1",
"vite-tsconfig-paths": "5.1.4",
"wrangler": "3.101.0"
},
"browserslist": {
"production": [">0.2%", "not dead", "not op_mini all"],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"volta": {
"node": "23.5.0",
"npm": "11.0.0"
}
}