forked from essserrr/crt-terminal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.42 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
{
"name": "crt-terminal-demo",
"version": "1.0.0",
"description": "Retro looking CRT terminal for web",
"repository": {
"type": "git",
"url": "git+https://github.com/essserrr/crt-terminal.git"
},
"keywords": [
"crt",
"terminal",
"console",
"react",
"typescript"
],
"author": "Dmitriy Lipin",
"license": "MIT",
"bugs": {
"url": "https://github.com/essserrr/crt-terminal/issues"
},
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"prepush:app": "yarn --cwd ./apps/web prepush",
"prepush:terminal": "yarn --cwd ./packages/crt-terminal prepush",
"prepush": "yarn prepush:app && yarn prepush:terminal"
},
"devDependencies": {
"prettier": "^2.5.1",
"turbo": "latest",
"husky": "^8.0.0"
},
"turbo": {
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**",
".next/**"
]
},
"test": {},
"stylelint": {},
"lint": {
"dependsOn": [
"stylelint"
]
},
"dev": {
"cache": false
}
}
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
}
}