-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.37 KB
/
package.json
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
{
"name": "wc-le-cs-ts",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"init": "npm install && snowpack install && cd storybook && npm install && npm run storybook:build && cd -"
},
"author": "Frédéric Camblor",
"license": "MIT",
"devDependencies": {
"@snowpack/app-scripts-lit-element": "0.6.1",
"concurrently": "5.0.2",
"sass": "1.24.3",
"snowpack": "2.1.1",
"typescript": "3.7.4"
},
"webDependencies": {
"@webcomponents/webcomponentsjs": "2.4.0",
"jquery": "3.5.0",
"lit-element": "2.2.1",
"lit-html": "1.2.1",
"what-input": "5.2.6"
},
"dependencies": {
"foundation": "4.2.1-1",
"foundation-sites": "6.6.1"
},
"engines": {
"node": ">=12.0.0"
},
"snowpack": {
"extends": "@snowpack/app-scripts-lit-element",
"scripts": {
"proxy:storybook": "proxy http://localhost:8001 --to /storybook",
"run:sass-vendors": "sass styles/foundation/foundation.scss dist/styles/vendors.css",
"run:sass-vendors::watch": "$1 --watch",
"run:sass-app": "sass styles/app/app.scss dist/styles/app.css",
"run:sass-app::watch": "$1 --watch",
"mount:public": "mount public --to /",
"mount:styles": "mount dist/styles --to /styles",
"mount:src": "mount src --to /_dist_",
"mount:web_modules": "mount web_modules --to /web_modules"
}
}
}