-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.93 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
{
"name": "ts-web-components",
"homepage": "https://nathanjhood.github.io/ts-web-components/",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"build-only": "tsx scripts/build.ts",
"serve": "tsx scripts/serve.ts",
"build": "run-s css build-only",
"start": "run-p css-watch serve",
"css": "tailwindcss -i src/tailwind.css -o dist/static/css/tailwind.css --config tailwind.config.mjs",
"css-watch": "tailwindcss -i src/tailwind.css -o dist/static/css/tailwind.css --config tailwind.config.mjs --watch",
"type-check": "tsc --noEmit",
"gen:certs": "openssl req -x509 -newkey rsa:4096 -keyout app.key -out app.cert -days 9999 -nodes -subj /CN=127.0.0.1",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check ./**/*.{js,jsx,ts,tsx,css,md,json} --config ./prettier.config.mjs",
"format:fix": "prettier --write ./**/*.{js,jsx,ts,tsx,css,md,json} --config ./prettier.config.mjs"
},
"dependencies": {
"autoprefixer": "^10.4.20",
"esbuild": "^0.24.0",
"npm-run-all2": "^6.2.3",
"postcss": "^8.4.47",
"react": "^18.3.1",
"serve": "^14.2.3",
"tailwindcss": "^3.4.13",
"tsx": "^4.19.1",
"web-vitals": "2.1.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/node": "^22.7.5",
"@types/prop-types": "^15.7.13",
"browserslist": "^4.24.0",
"csstype": "^3.1.3",
"debug": "^4.3.7",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"tsc": "^2.0.4",
"tslib": "^2.7.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1"
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=20"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}