forked from farm-fe/farm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.73 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
{
"name": "farm-fe",
"version": "0.0.0",
"description": "Farm is modern web building tool written in rust",
"engines": {
"node": ">=16",
"pnpm": ">=8"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/node": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"@vitest/coverage-v8": "^0.33.0",
"cross-env": "^7.0.3",
"cspell": "^6.2.2",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"execa": "^7.1.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nanospinner": "^1.1.0",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"rimraf": "^3.0.2",
"rollup": "^3.29.4",
"typescript": "^4.9.4",
"vite": "^4.4.11",
"vitest": "^0.33.0"
},
"scripts": {
"prepare": "husky install",
"bootstrap": "pnpm install && node scripts/clean.mjs && node scripts/bootstrap.mjs && pnpm start",
"test": "vitest run",
"start": "pnpm --filter @farmfe/cli start",
"release": "node scripts/release.mjs",
"clean": "node scripts/clean.mjs && rimraf node_modules **/*/node_modules",
"bump": "node scripts/bump.mjs",
"test:rs:update": "cross-env FARM_UPDATE_SNAPSHOTS=1 cargo test -p farmfe_compiler",
"ready": "node scripts/ready.mjs"
},
"lint-staged": {
"packages/**/*.ts": [
"prettier-eslint --write"
],
"js-plugins/**/*.ts": [
"prettier-eslint --write"
]
},
"pnpm": {
"overrides": {
"@farmfe/core": "workspace:*"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}