-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.65 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
{
"name": "tweexel-editor",
"description": "Editor for emoji-based pixel art on twitter.",
"version": "0.1.0-alpha.01",
"keywords": [],
"author": "Emanuel Kluge <[email protected]>",
"license": "MIT",
"scripts": {
"start": "vite",
"build": "tsc && vite build --outDir build",
"preview": "vite preview",
"fmt": "prettier --config ./.prettierrc --ignore-path ./.prettierignore \"**/**.{js,jsx,ts,tsx,css,html,json,md}\"",
"fmt:write": "npm run fmt -- --write",
"fmt:check": "npm run fmt -- --check",
"lint:check": "eslint src/**/*.{js,ts,tsx}",
"lint:fix": "npm run lint -- --fix",
"tsc": "tsc --noEmit",
"lint": "npm-run-all lint:check tsc fmt:check",
"test": "vitest --config vite.config.ts",
"preserve": "npm run build",
"serve": "serve -s -C -n build",
"deploy": "CI=true npm-run-all lint test build"
},
"eslintIgnore": [
"build/*"
],
"dependencies": {
"classnames": "2.3.2",
"clipboard-polyfill": "4.0.0",
"preact": "10.17.1",
"preact-router": "4.1.1",
"tailwindcss": "3.3.3"
},
"devDependencies": {
"@preact/preset-vite": "2.6.0",
"@testing-library/preact": "3.2.3",
"@types/webpack-env": "1.18.2",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.8.0",
"autoprefixer": "10.4.16",
"eslint": "8.51.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.1",
"npm-run-all": "4.1.5",
"postcss": "8.4.31",
"prettier": "2.8.8",
"serve": "14.2.1",
"ts-jest": "29.1.1",
"typescript": "5.2.2",
"vite": "3.2.11",
"vitest": "0.34.6"
}
}