-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.74 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
49
50
51
52
53
54
55
{
"name": "codeanker-project",
"author": "CODEANKER GmbH",
"version": "1.8.0",
"description": "",
"workspaces": [
"api",
"frontend",
"docs",
"packages/*"
],
"engines": {
"node": ">=20"
},
"scripts": {
"start:services": "docker-compose -f docker-compose-services.yml up --build",
"start:api": "npm run dev -w ./api",
"start:frontend": "VITE_APP_API_HOST=http://localhost:3030 npm run dev -w ./frontend",
"start:docs": "npm run docs:dev -w ./docs",
"migrate:api": "npm exec -w ./api prisma migrate deploy",
"lint": "eslint \"**/*.{vue,ts,js}\"",
"lint:fix": "eslint \"**/*.{vue,ts,js}\" --fix",
"lint-staged": "lint-staged -c .lintstagedrc.js",
"prepare": "husky install",
"typecheck": "vue-tsc -b",
"test": "vitest",
"test:all": "concurrently -n api,frontend,test -s command-test --kill-others \"npm run start:api\" \"npm run start:frontend\" \"npm run test -- run\"",
"generate": "tsx ./api/src/cli/index.ts"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"concurrently": "^8.2.2",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.18.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.9",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"tailwindcss": "^3.3.5",
"typescript": "^5.3.2",
"vitest": "^0.34.6",
"vue-tsc": "^1.8.22"
},
"dependencies": {
"commander": "^11.1.0",
"inquirer": "^9.2.12",
"simple-syntax-highlighter": "^3.0.2"
}
}