-
Notifications
You must be signed in to change notification settings - Fork 689
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.76 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.76 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
55
56
57
58
59
60
{
"name": "craftcms",
"private": true,
"main": "webpack.config.js",
"type": "module",
"scripts": {
"check-prettier": "prettier --check ./resources",
"fix-prettier": "prettier --write ./resources",
"prepare": "husky",
"prebuild": "npm run fix-prettier",
"build": "vite build",
"dev": "vite",
"build:bundles": "npm run build -w @craftcms/asset-bundles",
"dev:bundles": "npm run dev -w @craftcms/asset-bundles",
"dev:cp": "npm run dev -w @craftcms/cp",
"build:cp": "npm run build -w @craftcms/cp",
"test:cp": "npm run test -w @craftcms/cp",
"storybook:cp": "npm run storybook -w @craftcms/cp"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=22"
},
"devDependencies": {
"@craftcms/playwright": "file:packages/craftcms-playwright",
"@craftcms/webpack": "file:packages/craftcms-webpack",
"@playwright/test": "^1.52.0",
"@tailwindcss/vite": "^4.1.16",
"@total-typescript/tsconfig": "^1.0.4",
"@vitejs/plugin-vue": "^6.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"npm-run-all": "^4.1.5",
"prettier": "3.6.2",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-prettier": "^5.0.0",
"stylelint-use-logical-spec": "^5.0.1",
"typescript": "^5.9.3",
"vite": "^7.1.9",
"vite-tsconfig-paths": "^5.1.4",
"vue-tsc": "^3.1.1"
},
"optionalDependencies": {
"@awesome.me/kit-ddaed3f5c5": "^1.0.41"
},
"dependencies": {
"@craftcms/cp": "file:packages/craftcms-cp",
"@inertiajs/vue3": "^2.2.7",
"@vueuse/core": "^14.0.0",
"axios": "^1.13.2",
"laravel-vite-plugin": "^2.0.1",
"lit": "^3.3.1",
"tailwindcss": "^4.1.16",
"vue": "^3.5.22"
}
}