-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.8 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.8 KB
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
{
"private": true,
"workspaces": [
"confiture-rest-api",
"confiture-web-app"
],
"resolutions": {
"prosemirror-view": "^1.41.5",
"prosemirror-model": "^1.24.1",
"prosemirror-state": "^1.4.3",
"prosemirror-transform": "^1.10.4"
},
"devDependencies": {
"@antfu/eslint-config": "^5.4.1",
"cypress": "^13.6.1",
"eslint": "^9.29.0",
"eslint-plugin-format": "^1.0.1",
"lint-staged": "^15.2.0",
"postcss-html": "^1.8.0",
"prettier": "^3.6.2",
"simple-git-hooks": "^2.13.0",
"stylelint": "^16.23.1",
"stylelint-config-recommended": "^17.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"typescript": "^5.9.3"
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:styles": "stylelint confiture-web-app/src/**/*.{css,vue}",
"lint:styles:fix": "stylelint --fix confiture-web-app/src/**/*.{css,vue}",
"tests:open": "yarn cypress open",
"tests:run": "yarn cypress run",
"tests:show-all-ts-errors": "tsc --project cypress/tsconfig.json --noEmit",
"heroku-postbuild": "yarn workspaces foreach --all run build",
"copytypes": "yarn workspace confiture-rest-api run generate-api-types && cp ./confiture-rest-api/confiture-api.ts ./confiture-web-app/src/types",
"postinstall": "yarn copytypes && yarn workspace confiture-web-app run generate:rgaa",
"prepare": "yarn simple-git-hooks",
"dev:back": "yarn workspace confiture-rest-api run start:dev",
"dev:front": "yarn workspace confiture-web-app run dev",
"dev": "yarn dev:back & yarn dev:front",
"g:show-all-ts-errors": "cd $INIT_CWD && tsc --noEmit"
},
"dependencies": {
"pm2": "^5.4.0"
},
"engines": {
"node": "^22.14.0"
},
"packageManager": "yarn@4.9.2"
}