-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.15 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
{
"name": "my-turborepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"frontend",
"services/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"start": "turbo run start",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "prettier --write \"**/*.{js,ts,tsx,md}\"",
"prepare": "husky install",
"terminate": "sh ./workspace-scripts/terminate.sh"
},
"dependencies": {
"dotenv-cli": "7.0.0",
"esbuild": "0.17.5",
"esbuild-plugin-glob": "2.2.1",
"rimraf": "4.1.2",
"shx": "0.3.4",
"turbo": "1.7.3"
},
"devDependencies": {
"@babel/cli": "7.17.10",
"@babel/core": "7.17.12",
"@babel/eslint-parser": "7.17.0",
"@babel/node": "7.20.7",
"@babel/preset-env": "7.17.12",
"@sliit-foss/eslint-config-internal": "1.1.3",
"cross-env": "5.1.4",
"eslint": "8.33.0",
"eslint-config-turbo": "0.0.7",
"eslint-plugin-import": "2.27.5",
"husky": "8.0.3",
"jest": "29.4.1",
"kill-port": "2.0.1",
"node-mocks-http": "1.10.1",
"prettier": "2.8.3"
},
"engines": {
"node": ">=14.0.0"
}
}