forked from cesarParra/lwc-signals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.98 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
{
"name": "lwc-signals",
"private": true,
"version": "1.3.0",
"scripts": {
"test": "jest",
"build": "tsc",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"create:scratch": "sf org create scratch --alias lwc-signals --definition-file config/project-scratch-def.json --set-default",
"dev:start": "npm run create:scratch && sf project deploy start",
"lint": "eslint ./{examples,force-app,src}/**/{lwc}/*.{js,ts} --no-error-on-unmatched-pattern",
"prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"prettier:verify": "prettier --check \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"postinstall": "husky install",
"precommit": "lint-staged --allow-empty",
"tw:build": "npx tailwindcss -i ./examples/tw/input.css -o ./examples/main/default/staticresources/tw/css/main.css --minify",
"tw:build:watch": "npx tailwindcss -i ./examples/tw/input.css -o ./examples/main/default/staticresources/tw/css/main.css --minify --watch"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@lwc/eslint-plugin-lwc": "^1.1.2",
"@prettier/plugin-xml": "^3.2.2",
"@salesforce/eslint-config-lwc": "^3.2.3",
"@salesforce/eslint-plugin-aura": "^2.0.0",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"@tailwindcss/forms": "^0.5.7",
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^27.6.0",
"globals": "^15.2.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"tailwindcss": "^3.4.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
},
"lint-staged": {
"**/*.{cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}": [
"prettier --write"
],
"**/{lwc}/**/*.js": [
"eslint"
]
}
}