forked from edmundhung/conform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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
{
"private": true,
"name": "conform-monorepo",
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*",
"guide",
"playground"
],
"scripts": {
"build": "run-s build:*",
"build:js": "rollup -c",
"build:ts": "tsc -b",
"watch": "run-p watch:*",
"watch:js": "npm run build:js -- --watch",
"watch:ts": "npm run build:ts -- --watch",
"guide": "npm run dev --workspace=guide",
"playground": "npm run dev --workspace=playground",
"prebuild": "rimraf --glob ./packages/**/*.{d.ts,cjs,mjs,js,tsbuildinfo}",
"pretest": "npm run build --workspace=playground",
"test": "playwright test",
"lint": "eslint --ignore-path .gitignore --cache --ext .js,.jsx,.ts,.tsx .",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.20.2",
"@playwright/test": "^1.36.2",
"@remix-run/eslint-config": "^1.19.3",
"@remix-run/node": "^1.19.3",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"rimraf": "^5.0.1",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.4.0",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=12"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --ignore-path .gitignore --cache --ext .js,.jsx,.ts,.tsx",
"*.{js,jsx,ts,tsx,css,json,yaml}": "prettier --ignore-path .gitignore --write",
"*.md": "prettier --ignore-path .gitignore --write --use-tabs false"
}
}