-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.49 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.49 KB
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
{
"name": "resolid-run",
"type": "module",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"lint": "eslint --cache --ext .js,.jsx,.cjs,.mjs,.ts,.tsx .",
"format": "prettier --write .",
"prisma": "pnpm run --filter website prisma",
"test": "pnpm test -r",
"website:dev": "pnpm run --filter website dev",
"website:build": "pnpm run --filter website build",
"website:serve": "pnpm run --filter website serve",
"website:deploy": "pnpm run --filter website... build"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@types/node": "^18.16.7",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-solid": "^0.12.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.2.8",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vite": "^4.3.5",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.31.0"
},
"lint-staged": {
"*.{js,jsx,cjs,mjs,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json,html,css}": "prettier --write"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@8.2.0"
}