-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.42 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
{
"name": "cw-filter-calendar",
"author": "Jean-Philippe Green",
"type": "module",
"scripts": {
"setup-env": "npm run setup-env -w @cwfc/wordpress",
"wp-env": "wp-env",
"prettier": "prettier . --check",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint .",
"lint:css": "stylelint \"**/*.{css,scss}\"",
"autofix": "eslint . --fix && stylelint \"**/*.{css,scss}\" --fix && prettier . --write",
"build": "turbo run build",
"test": "npm run test -w @cwfc/app",
"test-update": "npm run test -w @cwfc/app -- -u",
"watch": "turbo run watch"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@prettier/plugin-php": "^0.22.2",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.18.0",
"@wordpress/env": "^9.8.0",
"@wordpress/scripts": "^27.7.0",
"cross-zip-cli": "^1.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"prettier": "^3.2.5",
"stylelint": "^16.3.1",
"stylelint-config-standard-scss": "^13.1.0",
"turbo": "^1.13.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.16.1 <19 || >=20.10.0 <21",
"npm": ">=10.2.3"
},
"workspaces": [
"packages/app",
"packages/shared",
"packages/wordpress"
]
}