-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.07 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
{
"name": "foundation",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "./dist/main.js",
"exports": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js"
},
"author": "David Bonnet <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nevoland/foundation.git"
},
"files": [
"dist",
"lib",
"!lib/old",
"!lib/**/*.test.ts?",
"!src",
"!src/old",
"README.md",
"doc/",
"!doc/.nojekyll"
],
"scripts": {
"dev": "npm run start -- --watch-path=src/server --env-file-if-exists=.development.env",
"start": "node --env-file=.env --experimental-strip-types --disable-warning=ExperimentalWarning src/server/main.ts",
"dev:test": "vitest --update --root=./",
"test": "npm run lint && npm run format && vitest run --root=./",
"build:lib": "rm -rf dist; tsc --project tsconfig.package.json",
"build:doc": "typedoc --tsconfig tsconfig.package.json",
"build:doc:save": "typedoc --tsconfig tsconfig.package.json && git add -A && git commit -a -m 'Update doc'",
"build:app": "vite build",
"prepare": "npm run build:lib",
"format": "prettier --check './**/*.{css,scss,md,mdx,json,tsx,ts,jsx,js}'",
"format:fix": "prettier --write './**/*.{css,scss,md,mdx,json,tsx,ts,jsx,js}'",
"lint": "npm run lint:ts",
"lint:fix": "npm run lint:ts:fix",
"lint:ts": "eslint .",
"lint:ts:fix": "eslint --fix .",
"release:init": "npm publish --access=public",
"release:patch": "npm version patch && git push origin --follow-tags && npm publish",
"release:minor": "npm version minor && git push origin --follow-tags && npm publish",
"release:major": "npm version major && git push origin --follow-tags && npm publish",
"release:alpha": "npm version prerelease --preid=alpha && git push origin --follow-tags && npm publish --tag=next",
"release:beta": "npm version prerelease --preid=beta && git push origin --follow-tags && npm publish --tag=next"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@nevoland/get-global": "^2.1.0",
"@preact/preset-vite": "^2.9.3",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.1",
"@typescript-eslint/parser": "^8.18.0",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"cssnano": "^7.0.6",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-sort-keys": "^2.3.5",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-vitest": "^0.5.4",
"postcss": "^8.4.49",
"postcss-pseudo-classes": "^0.4.0",
"preact": "^10.25.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"realue": "^5.0.0-alpha.17",
"tailwindcss": "^3.4.16",
"typedoc": "^0.27.4",
"typedoc-plugin-markdown": "^4.3.2",
"typescript": "^5.7.2",
"unchangeable": "^1.7.3",
"vite": "^5.4.11",
"vite-plugin-module-list": "^2.2.2",
"vitest": "^2.1.8"
},
"dependencies": {
"@types/express": "^5.0.0",
"express": "^4.21.2"
}
}