-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 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": "sistema-pos",
"version": "0.1",
"main": "server/server.mjs",
"type": "module",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev": "concurrently \"npm run back:dev\" \"npm run front:dev\"",
"back:dev": "npm run dev --workspace=backend",
"front:dev": "npm run dev --workspace=frontend",
"front:start": "npm run start --worspace=frontend",
"front:build": "npm run build --worspace=frontend",
"front:preview": "npm run preview --worspace=frontend",
"front:astro": "npm run astro --worspace=frontend",
"lint": "npm run lint:format && npm run lint:fix",
"lint:check": "eslint . --ext .js,.jsx,.ts,.tsx,.astro,.mjs",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx,.astro,.mjs --fix",
"lint:format": "prettier --write \"{frontend,backend}/**/*.{js,jsx,ts,tsx,json,css,md,astro,mjs}\""
},
"lint-staged": {
"*.{js,jsx,ts,tsx,astro,mjs}": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [],
"author": "",
"description": "",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.0.0",
"@typescript-eslint/parser": "8.0.0",
"concurrently": "8.2.2",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-astro": "1.2.3",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.4",
"lint-staged": "15.2.8",
"prettier": "3.3.3",
"prettier-plugin-astro": "0.14.1",
"semistandard": "17.0.0",
"typescript": "5.5.4"
}
}