-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 921 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 921 Bytes
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
{
"name": "stylescape-example-vite",
"description": "Stylescape example using Vite bundler",
"version": "0.0.3",
"private": true,
"repository": "https://github.com/stylescape/example-vite",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"stackblitz": {
"startCommand": "npm start"
},
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "npm run build",
"lint:css": "stylelint \"src/**/*.{css,scss}\"",
"format": "prettier --write \"src/**/*.{js,ts,jsx,tsx,css,scss,html,json}\""
},
"dependencies": {
"stylescape": "^0.3.11"
},
"devDependencies": {
"prettier": "^3.8.1",
"sass": "^1.97.3",
"stylelint": "^16.18.0",
"stylelint-config-standard-scss": "^15.0.1",
"vite": "^7.3.1"
}
}