-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.21 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
{
"name": "life-like",
"version": "0.1.0",
"description": "Life-like",
"private": true,
"author": "Steve Davis <[email protected]>",
"license": "MIT",
"type": "module",
"engines": {
"node": "^22",
"npm": "^10"
},
"scripts": {
"patterns:download": "bash ./scripts/download-patterns.sh",
"patterns:install": "bash ./scripts/install-patterns.sh",
"patterns": "npm run patterns:download && npm run patterns:install",
"build": "webpack --mode=development",
"build:production": "webpack --mode=production",
"watch": "webpack serve --mode=development",
"tsc": "tsc --noEmit",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"lint": "npm run tsc && npm run prettier && npm run eslint"
},
"dependencies": {
"@adobe/lit-mobx": "^2.2.2",
"@spectrum-web-components/accordion": "^1.0.3",
"@spectrum-web-components/action-button": "^1.0.3",
"@spectrum-web-components/action-group": "^1.0.3",
"@spectrum-web-components/divider": "^1.0.3",
"@spectrum-web-components/field-label": "^1.0.3",
"@spectrum-web-components/icons-workflow": "^1.0.3",
"@spectrum-web-components/overlay": "^1.0.3",
"@spectrum-web-components/picker": "^1.0.3",
"@spectrum-web-components/popover": "^1.0.3",
"@spectrum-web-components/progress-bar": "^1.0.3",
"@spectrum-web-components/slider": "^1.0.3",
"@spectrum-web-components/theme": "^1.0.3",
"lit": "^3.2.1",
"lodash.throttle": "^4.1.1",
"mobx": "^6.13.5"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/eslint__js": "^8.42.3",
"@types/lodash.throttle": "^4.1.9",
"css-loader": "^7.1.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-lit-a11y": "^4.1.4",
"html-webpack-plugin": "^5.6.3",
"prettier": "^3.4.2",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
}
}