-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 974 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 974 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
{
"name": "misoauto",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "nx run-many --target=serve --projects=backend,frontend --parallel",
"start": "npm run serve",
"format": "prettier --write \"frontend/src/**/*.{ts,tsx,js,jsx,json,css,scss,md}\" \"backend/src/**/*.{ts,js,json}\" \"backend/test/**/*.ts\"",
"format:check": "prettier --check \"frontend/src/**/*.{ts,tsx,js,jsx,json,css,scss,md}\" \"backend/src/**/*.{ts,js,json}\" \"backend/test/**/*.ts\""
},
"workspaces": [
"frontend",
"backend"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@nx/eslint": "20.3.3",
"@nx/jest": "20.3.3",
"@nx/nest": "^20.3.3",
"@nx/next": "20.3.3",
"eslint": "~8.57.0",
"jest": "^29.7.0",
"nx": "20.3.3",
"prettier": "^3.0.0"
},
"nx": {},
"dependencies": {
"@radix-ui/react-icons": "^1.3.2"
}
}