-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 1.02 KB
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
{
"name": "text2iac-platform",
"version": "0.1.0",
"description": "Text to Infrastructure as Code platform",
"repository": "https://github.com/DevOpsTerminal/text2iac",
"author": "DevOpsTerminal Team",
"license": "MIT",
"private": true,
"workspaces": [
"api",
"frontend"
],
"scripts": {
"dev": "concurrently \"npm:dev:*\"",
"dev:api": "cd api && npm run dev",
"dev:frontend": "cd frontend && npm start",
"build": "npm run build --workspaces",
"test": "npm test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"devDependencies": {
"concurrently": "^8.2.0",
"prettier": "^3.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}