-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 947 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 947 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
{
"name": "aras-part-react",
"private": true,
"version": "0.1.0",
"description": "React replacement for the Aras Innovator Part form, hosted in an HTML field iframe",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:watch": "vite build --watch",
"preview": "vite preview",
"typecheck": "tsc -b",
"test": "vitest run",
"test:watch": "vitest",
"deploy": "npm run build && powershell -NoProfile -ExecutionPolicy Bypass -File scripts/deploy.ps1 -Mode prod",
"deploy:dev": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/deploy.ps1 -Mode dev"
},
"dependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.2.0",
"jsdom": "^30.0.0",
"typescript": "~5.9.0",
"vite": "^7.3.0",
"vitest": "^3.2.0"
}
}