-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.71 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.71 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "gulppress",
"private": true,
"homepage": "https://github.com/wwwoda/gulppress",
"author": "woda - Software Development GmbH",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "turbo run dev --parallel --no-cache",
"test": "turbo run test",
"build": "turbo run build",
"clean": "lerna clean",
"lerna": "lerna",
"lint": "turbo run lint",
"nuke": "rm -r node_modules; for d in packages/*/node_modules; do echo $d; rm -r $d; done",
"type-check": "lerna run type-check"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@types/node": "^22.13.5",
"@types/through2": "^2.0.41",
"@types/vinyl": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"@wwwoda/tsconfig": "^1.2.0",
"babel-core": "^6.26.3",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-woda": "^0.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "*",
"eslint-plugin-react": "*",
"eslint-plugin-react-hooks": "*",
"lerna": "^8.2.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"turbo": "latest",
"typescript": "^5.7"
},
"engines": {
"node": ">=12.0.0"
},
"importSort": {
".ts": {
"parser": "typescript",
"style": "module-scoped",
"options": {}
}
},
"respository": "https://github.com/wwwoda/gulppress",
"packageManager": "pnpm@10.4.1",
"pnpm": {
"onlyBuiltDependencies": [
"core-js",
"es5-ext",
"fsevents",
"gifsicle",
"mozjpeg",
"nx",
"optipng-bin",
"sharp"
]
}
}