-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.62 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "ist-vercel-demo",
"description": "Webcomponent ist-vercel-demo following open-wc recommendations",
"license": "MIT",
"author": "ist-vercel-demo",
"version": "0.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint --ext .js,.html . --ignore-path .gitignore && prettier \"**/*.js\" --check --ignore-path .gitignore",
"format": "eslint --ext .js,.html . --fix --ignore-path .gitignore && prettier \"**/*.js\" --write --ignore-path .gitignore",
"test": "web-test-runner --coverage",
"test:watch": "web-test-runner --watch",
"storybook": "npm run analyze && web-dev-server -c .storybook/server.mjs",
"storybook:build": "npm run analyze && build-storybook",
"build": "rimraf dist && rollup -c rollup.config.js",
"start:build": "web-dev-server --root-dir dist --app-index index.html --open",
"analyze": "cem analyze --litelement --exclude dist,api",
"start": "web-dev-server"
},
"dependencies": {
"@github/time-elements": "^3.1.2",
"@lrnwebcomponents/rpg-character": "^4.0.24",
"@lrnwebcomponents/simple-colors": "^4.0.20",
"@lrnwebcomponents/simple-icon": "^4.0.20",
"@lrnwebcomponents/threaded-discussion": "^4.0.16",
"crypto-js": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"jwt-auth-component": "^0.0.3",
"lit": "2.2.0",
"mysql2": "^2.3.3",
"node-fetch": "^3.1.0",
"sjcl": "^1.0.8",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@custom-elements-manifest/analyzer": "^0.4.17",
"@open-wc/building-rollup": "^2.0.1",
"@open-wc/eslint-config": "^4.3.0",
"@open-wc/testing": "next",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.0.6",
"@web/dev-server": "^0.1.28",
"@web/dev-server-storybook": "next",
"@web/rollup-plugin-html": "^1.10.1",
"@web/rollup-plugin-import-meta-assets": "^1.0.7",
"@web/test-runner": "^0.13.22",
"babel-plugin-template-html-minifier": "^4.1.0",
"deepmerge": "^4.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"rollup": "^2.60.0",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-workbox": "^6.2.0"
},
"eslintConfig": {
"extends": [
"@open-wc",
"prettier"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"customElements": "custom-elements.json"
}