-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 963 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 963 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
{
"name": "stylescape-example-parcel",
"description": "Stylescape example using Parcel bundler",
"version": "0.0.2",
"private": true,
"repository": "https://github.com/stylescape/example-parcel",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"stackblitz": {
"startCommand": "npm start"
},
"scripts": {
"dev": "parcel src/index.html",
"start": "parcel src/index.html",
"build": "parcel build src/index.html",
"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": {
"@parcel/transformer-sass": "2.16.4",
"parcel": "2.16.4",
"prettier": "^3.8.1",
"stylelint": "^17.4.0",
"stylelint-config-standard-scss": "^17.0.0"
}
}