-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.84 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "gulppress",
"private": true,
"homepage": "https://github.com/wwwoda/gulppress",
"author": "Woda Digital",
"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.16.0",
"@types/node": "17.0.10",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"@wwwoda/tsconfig": "^1.1.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": "^4.0.0",
"rimraf": "^3.0.2",
"turbo": "^1.0.24",
"ts-node": "^10.4.0",
"typescript": "^4.5"
},
"engines": {
"node": ">=12.0.0",
"yarn": ">=1.0.0"
},
"importSort": {
".ts": {
"parser": "typescript",
"style": "module-scoped",
"options": {}
}
},
"respository": "https://github.com/wwwoda/gulppress",
"turbo": {
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"lib/**"
]
},
"dev": {
"dependsOn": [
"^dev"
],
"outputs": [
"lib/**"
],
"cache": false
},
"lint": {
"dependsOn": [
"^lint"
],
"cache": false
}
}
}
}