forked from lirown/dojo-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 4.2 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 4.2 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "dojo-starter",
"version": "0.1.0",
"private": true,
"description": "A template for building Progressive Web Applications using LitElement and Vaadin Router",
"license": "MIT",
"repository": "github:IBM/pwa-lit-template",
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"build": "rimraf server/dist/ && rollup --config",
"build:preview": "rimraf server/dist/ && GIT_HASH=`git branch --show-current` rollup --config",
"format": "npm-run-all format:*",
"format:eslint": "npm run lint:eslint -- --fix",
"format:prettier": "prettier \"**/*{html,js,json,md,js,webmanifest}\" --ignore-path .gitignore --write",
"format:stylelint": "npm run lint:stylelint -- --fix",
"lint": "npm-run-all --parallel lint:*",
"lint:eslint": "eslint --ignore-path .gitignore",
"lint:stylelint": "stylelint \"index.css\" --ignore-path .gitignore",
"lit:type-checking": "lit-analyzer \"src/{components,pages}/**/*.js\" --strict",
"serve": "web-dev-server --watch",
"start": "concurrently --kill-others --names tsc,webpack-dev-server \"npm run tsc:watch\" \"webpack-dev-server --watch --open --mode development\"",
"start-rollup-kaki": "concurrently --kill-others --names tsc,web-dev-server \"npm run tsc:watch\" \"web-dev-server --config web-dev-server.config.js\"",
"test": "echo \"Error: no test specified\"",
"tsc:watch": "tsc --watch",
"type-checking": "tsc --noEmit && npm run lit:type-checking"
},
"dependencies": {
"@forter/button": "^5.4.0",
"@forter/checkbox": "^3.5.0",
"@forter/radio": "^3.3.1",
"@forter/styles": "^4.9.0",
"@popperjs/core": "^2.11.5",
"@ui5/webcomponents": "^1.3.1",
"@vaadin/router": "^1.7.4",
"haunted": "^5.0.0",
"lit": "^2.2.4",
"pwa-helper-components": "~0.2.10",
"tslib": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-decorators": "^7.17.12",
"@babel/preset-env": "^7.18.0",
"@betit/rollup-plugin-rename-extensions": "^0.1.0",
"@open-wc/building-rollup": "^1.9.4",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^2.4.1",
"@rollup/plugin-typescript": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"@web/dev-server": "~0.1.10",
"@web/dev-server-esbuild": "~0.2.11",
"@web/dev-server-rollup": "~0.3.2",
"@web/rollup-plugin-copy": "~0.2.0",
"babel": "^6.23.0",
"babel-loader": "^8.2.5",
"chalk": "^4.1.0",
"concurrently": "^7.2.0",
"deepmerge": "^4.2.2",
"eslint": "^7.24.0",
"eslint-config-ibmresearch": "0.25.1",
"eslint-plugin-lit": "^1.6.1",
"eslint-plugin-lit-a11y": "^2.2.0",
"eslint-plugin-wc": "^1.3.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.3.8",
"i": "^0.3.6",
"lint-staged": "^10.5.4",
"lit-analyzer": "^1.2.1",
"npm": "^7.9.0",
"npm-run-all": "^4.1.5",
"prettier": "~2.2.1",
"prettier-plugin-package": "^1.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.74.1",
"rollup-plugin-uglify": "^6.0.4",
"socket.io-client": "^3.0.3",
"stylelint": "^13.12.0",
"stylelint-config-ibmresearch": "0.13.1",
"typescript": "~4.2.3",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0",
"webpack-remove-debug": "^0.1.0"
},
"eslintConfig": {
"extends": [],
"env": {
"browser": true,
"es6": true
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{html,js,json,md,ts,webmanifest}": "prettier --ignore-path .gitignore --write",
"**/*.{js}": "eslint --ignore-path .gitignore --fix",
"index.css": "stylelint --ignore-path .gitignore --fix"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"overrides": [
{
"files": "*.yml",
"options": {
"singleQuote": false
}
}
]
},
"stylelint": {
"extends": "stylelint-config-ibmresearch"
}
}