-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 870 Bytes
/
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
{
"name": "react-sandboxes",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"sandboxes:list": "ts-node tools/sandboxes.ts",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.184",
"@types/node": "^17.0.12",
"@types/semver": "^7.3.12",
"eslint-config-custom": "workspace:*",
"glob": "^8.0.3",
"prettier": "latest",
"ts-node": "^10.9.1",
"turbo": "latest",
"typescript": "^4.7.4"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "pnpm@7.9.0",
"dependencies": {
"chalk": "4.1.2",
"lodash": "^4.17.21",
"semver": "^7.3.7"
}
}