-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.23 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
{
"name": "macaroni-elements",
"version": "0.0.0",
"packageManager": "yarn@3.1.0",
"type": "module",
"scripts": {
"start": "concurrently \"node esbuild.config.js\" \"nodemon dist/index.js dist/index.js\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o ./docs/storybook",
"build-docs": "./node_modules/.bin/esbuild ./src/components/*.ts --bundle --outdir=./docs/macaroni/components/ --loader:.svg=dataurl"
},
"dependencies": {
"lit": "^2.0.2",
"typescript": "^4.5.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@mdx-js/react": "^1.6.22",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-docs": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/web-components": "^6.3.12",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"babel-loader": "^8.2.3",
"concurrently": "^6.4.0",
"esbuild": "^0.13.15",
"eslint": "^7.12.1",
"eslint-config-standard": "latest",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"nodemon": "^2.0.15",
"storybook": "^6.3.12"
}
}