-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.18 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.18 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
{
"name": "stylescape-example-vue",
"description": "Stylescape example with Vue 3 and Vite",
"version": "0.0.2",
"private": true,
"repository": "https://github.com/stylescape/example-vue",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"stackblitz": {
"startCommand": "npm start"
},
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build",
"preview": "vite preview --port 4173",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --ignore-path .gitignore",
"lint:css": "stylelint \"src/**/*.{css,scss}\"",
"format": "prettier --write \"src/**/*.{js,ts,jsx,tsx,css,scss,html,json}\"",
"fix": "npm run lint -- --fix",
"test": "npm run build && npm run lint"
},
"dependencies": {
"stylescape": "^0.3.15",
"vue": "^3.5.29"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.4",
"eslint": "^9.39.2",
"eslint-plugin-vue": "^10.8.0",
"prettier": "^3.8.1",
"sass": "^1.97.3",
"stylelint": "^16.18.0",
"stylelint-config-standard-scss": "^17.0.0",
"vite": "^7.3.1"
}
}