-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 713 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "stylescape_parcel",
"description": "Include Stylescape's source Sass and individual JavaScript plugins with Parcel.",
"version": "0.0.1",
"private": true,
"repository": "https://github.com/stylescape/example-parcel",
"license": "MIT",
"stackblitz": {
"startCommand": "npm start"
},
"scripts": {
"start": "parcel serve src/index.html --public-url / --dist-dir dist",
"build": "parcel build src/index.html --public-url / --dist-dir dist",
"test": "npm run build"
},
"dependencies": {
"stylescape": "^0.2.7"
},
"devDependencies": {
"@parcel/transformer-sass": "2.16.3",
"parcel": "2.16.3"
}
}