forked from profmikegreene/sakai-trinity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.99 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "sakai-trinity",
"version": "1.0.0",
"description": "Sakai Trinity",
"main": "index.html",
"type": "module",
"scripts": {
"dev": "browser-sync start --server --files \"./*\"",
"build-storybook": "build-storybook",
"eslint:config": "eslint config",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:prettier-css",
"format": "npm run format:eslint && npm run format:prettier && npm run format:prettier-css",
"format:lit": "prettier my-element.js test/* --write",
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint:lit": "lit-analyzer my-element.js && eslint '**/*.js'",
"lint:prettier": "prettier \"**/*.js\" --check --ignore-path .gitignore",
"lint:prettier-css": "prettier \"**/*.css\" --check --ignore-path .gitignore",
"format:prettier": "prettier \"**/*.js\" --write --ignore-path .gitignore",
"format:prettier-css": "prettier \"**/*.css\" --write --ignore-path .gitignore",
"docs": "npm run docs:clean && npm run analyze && npm run docs:build && npm run docs:assets && npm run docs:gen",
"docs:clean": "rimraf docs",
"docs:gen": "eleventy --config=.eleventy.cjs",
"docs:gen:watch": "eleventy --config=.eleventy.cjs --watch",
"docs:build": "rollup -c --file docs/my-element.bundled.js",
"docs:assets": "cp node_modules/prismjs/themes/prism-okaidia.css docs/",
"docs:serve": "es-dev-server --root-dir=docs --node-resolve --watch",
"analyze": "wca analyze \"**/*.js\" --outFile custom-elements.json",
"serve": "web-dev-server --open sakai-trinity/ --node-resolve",
"serve:no-watch": "web-dev-server --node-resolve",
"test": "karma start karma.conf.cjs",
"test:watch": "karma start karma.conf.cjs --auto-watch=true --single-run=false",
"test:update-snapshots": "karma start karma.conf.cjs --update-snapshots",
"test:prune-snapshots": "karma start karma.conf.cjs --prune-snapshots",
"checksize": "rollup -c ; cat my-element.bundled.js | gzip -9 | wc -c ; rm my-element.bundled.js",
"build": "echo \"This is not a TypeScript project, so no need to build.\""
},
"keywords": [],
"author": "",
"license": "ECL-2.0",
"eslintConfig": {
"extends": [
"@open-wc/eslint-config"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"dependencies": {
"@fortawesome/fontawesome-free": "5.14.0",
"@fortawesome/fontawesome-svg-core": "1.2.30",
"@fortawesome/free-solid-svg-icons": "5.14.0",
"@github/include-fragment-element": "^5.3.1",
"@lion/calendar": "0.9.8",
"@lion/dialog": "0.7.13",
"@lion/pagination": "^0.5.0",
"@webcomponents/webcomponentsjs": "2.5.0",
"ionicons": "^5.5.1",
"lit-element": "2.3.1"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@open-wc/eslint-config": "^4.3.0",
"@open-wc/testing": "^2.5.10",
"@open-wc/testing-karma": "^3.3.11",
"@rollup/plugin-replace": "^2.3.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@web/dev-server": "^0.1.17",
"@web/dev-server-storybook": "^0.3.5",
"babel-eslint": "^10.1.0",
"browser-sync": "^2.26.14",
"chai": "^4.2.0",
"deepmerge": "^4.2.2",
"es-dev-server": "^1.46.1",
"eslint": "^7.25.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-wc": "^1.3.0",
"fetch-mock": "^9.10.7",
"jasmine": "^3.7.0",
"jasmine-ajax": "^4.0.0",
"karma": "^6.3.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-mocha": "^1.3.0",
"karma-spec-reporter": "^0.0.32",
"lit-analyzer": "^1.1.9",
"mocha": "^7.1.1",
"prettier": "^2.2.1",
"puppeteer": "^5.4.1",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup-plugin-filesize": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.3.0",
"web-component-analyzer": "^1.0.3"
}
}