Skip to content

Commit

Permalink
frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
Ceezik committed Apr 2, 2024
1 parent ce56c16 commit 9e3cc25
Show file tree
Hide file tree
Showing 11 changed files with 701 additions and 1,402 deletions.
29 changes: 29 additions & 0 deletions apps/frontend/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"type": "module",
"name": "frontend",
"version": "0.1.0",
"private": true,
"dependencies": {},
"engines": {
"node": "16.13.0",
"npm": "8.1.0"
},
"scripts": {
"serve": "vite",
"build": "vite build",
"test": "vitest run",
"lint": "eslint src/**/*.{js,jsx,ts,tsx,json}"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
18 changes: 16 additions & 2 deletions apps/frontend/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@
"sourceRoot": "apps/frontend/src",
"projectType": "application",
"tags": [],
"// targets": "to see all targets run: nx show project frontend --web",
"targets": {}
"targets": {
"serve": {
"executor": "nx:run-commands",
"options": {
"command": "npm run serve",
"cwd": "apps/frontend"
}
},
"test": {
"executor": "nx:run-commands",
"options": {
"command": "npm run test",
"cwd": "apps/frontend"
}
}
}
}
15 changes: 0 additions & 15 deletions apps/frontend/src/app/app.spec.tsx

This file was deleted.

17 changes: 0 additions & 17 deletions apps/frontend/src/app/app.tsx

This file was deleted.

Loading

0 comments on commit 9e3cc25

Please sign in to comment.