-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 858 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 858 Bytes
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
{
"name": "embalse-info",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"integrations/*",
"functions",
"front"
],
"packageManager": "npm@10.0.0",
"scripts": {
"prescripts": "npm run start:db -w @embalse-info/db",
"scripts": "tsx ./run-scripts",
"prestart": "turbo build",
"start": "npm run scripts -- start",
"start:console-runners": "npm run scripts -- console-runners",
"build": "turbo build",
"test": "vitest"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"dotenv": "^17.2.3",
"npm-run-all2": "^8.0.4",
"rimraf": "^6.0.1",
"tsx": "^4.20.3",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"dependencies": {
"axios": "^1.10.0",
"cheerio": "^1.1.2",
"downshift": "^9.2.0",
"playwright": "^1.54.2"
}
}