forked from sardinedev/eleventy-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.51 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
{
"name": "root",
"private": true,
"scripts": {
"types": "lerna run types",
"build": "turbo run build",
"test": "turbo run test",
"release": "turbo run release",
"reset-modules": "rm -rf **/**/node_modules"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.19.0",
"@parcel/packager-ts": "^2.0.1",
"@parcel/transformer-typescript-types": "^2.0.1",
"@swc/core": "^1.2.124",
"@swc/jest": "^0.2.15",
"@types/autoprefixer": "^10.2.0",
"@types/cssnano": "^4.0.0",
"@types/jest": "^26.0.14",
"@types/jsdom": "^16.2.4",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"parcel": "^2.0.1",
"prettier": "^2.1.2",
"turbo": "^1.0.19",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,json,md}": "npx prettier --write"
},
"turbo": {
"baseBranch": "origin/main",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**"
]
},
"test": {},
"release": {
"dependsOn": [
"build",
"test",
"lint"
]
},
"lint": {}
}
}
}