-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
103 lines (103 loc) · 4.7 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
102
103
{
"name": "@coveo/quantic",
"version": "3.12.1",
"description": "A Salesforce Lightning Web Component (LWC) library for building modern UIs interfacing with the Coveo platform",
"author": "coveo.com",
"homepage": "https://coveo.com",
"license": "Apache-2.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/coveo/ui-kit.git"
},
"scripts": {
"test": "npm run babel:headless && npm run build:staticresources && npm run lint:check:tests && npm run validate:types && npm run test:unit",
"lint:check:tests": "eslint force-app/main/default/lwc/ --format junit -o reports/eslint.xml",
"lint:fix": "npm run lint:fix:js",
"lint:fix:js": "eslint --fix force-app/main/default/lwc/ && eslint --fix force-app/examples/main/lwc/ && prettier \"force-app/{,**}/*.js\" --write",
"lint:fix:apex": "prettier \"force-app/{,**}/*.{cls,trigger}\" --write",
"build:staticresources": "node build-static-resources.js",
"build": "nx build",
"dev": "npx rimraf .localdevserver && npm run build:staticresources && npm run dev:sfdx",
"dev:sfdx": "sf project deploy start --source-dir force-app/main && sfdx force:lightning:lwc:start --port 3334",
"test:unit": "lwc-jest",
"test:unit:debug": "lwc-jest --debug",
"test:unit:watch": "lwc-jest --watch",
"test:unit:coverage": "lwc-jest --coverage",
"validate:types": "tsc",
"e2e:watch": "cypress open --browser chrome --e2e",
"e2e": "cypress run --browser chrome",
"e2e:detailed": "cypress run --browser chrome --headless --reporter cypress/reporters/detailed-reporter.js",
"e2e:playwright": "npx playwright test",
"e2e:playwright:lws-enabled": "npx playwright test --project=LWS-enabled",
"e2e:playwright:lws-disabled": "npx playwright test --project=LWS-disabled",
"scratch:create": "sf org create scratch --set-default --definition-file config/lws-enabled-scratch-def.json --alias Quantic__LWS_enabled",
"setup:examples": "npm run create:lws-enabled && npm run create:lws-disabled",
"create:lws-enabled": "../../node_modules/.bin/ts-node scripts/build/deploy-community.ts --scratch-org-def-path=./config/lws-enabled-scratch-def.json",
"create:lws-disabled": "../../node_modules/.bin/ts-node scripts/build/deploy-community.ts --scratch-org-def-path=./config/lws-disabled-scratch-def.json",
"deploy:main": "sf project deploy start --source-dir force-app/main --target-org",
"deploy:examples": "sf project deploy start --source-dir force-app/examples --target-org",
"prebuild:doc": "mkdirp docs/out",
"build:doc": "jsdoc -c jsdoc-config.json",
"publish:sfdx": "../../node_modules/.bin/ts-node scripts/build/create-package.ts --remove-translations",
"promote:sfdx": "npm run publish:sfdx -- --promote",
"promote:sfdx:ci": "npm run publish:sfdx -- --promote --ci",
"publish:npm": "npm run-script -w=@coveo/release npm-publish",
"publish:bump": "npm run-script -w=@coveo/release bump",
"promote:npm:latest": "npm run-script -w=@coveo/release promote-npm-prod",
"preinstall": "node scripts/npm/check-sfdx-project.js",
"postinstall": "node scripts/npm/setup-quantic.js",
"babel:headless": "babel ../../node_modules/@coveo/headless/dist/quantic --out-dir .tmp/quantic-compiled --extensions .js --minified"
},
"dependencies": {
"@coveo/bueno": "1.0.7",
"@coveo/headless": "3.13.2",
"dompurify": "3.2.3",
"marked": "12.0.2",
"fs-extra": "11.2.0"
},
"engines": {
"node": "^20.9.0 || ^22.11.0"
},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/plugin-transform-async-to-generator": "7.25.9",
"@ckeditor/jsdoc-plugins": "43.0.1",
"@coveo/relay-event-types": "13.0.3",
"@coveo/release": "1.0.0",
"@octokit/graphql": "8.1.2",
"@octokit/graphql-schema": "15.25.0",
"@playwright/test": "1.49.1",
"@salesforce/eslint-config-lwc": "3.6.0",
"@salesforce/sfdx-lwc-jest": "5.1.0",
"@types/node": "22.10.6",
"@types/strip-color": "0.1.2",
"@types/wait-on": "5.3.4",
"chalk": "4.1.2",
"change-case": "4.1.2",
"cypress": "13.6.6",
"cypress-real-events": "1.13.0",
"cypress-repeat": "2.3.8",
"dotenv": "16.4.7",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"jsdoc": "4.0.4",
"jsdoc-tsimport-plugin": "1.0.5",
"mkdirp": "3.0.1",
"ncp": "2.0.0",
"prettier-plugin-apex": "2.2.2",
"strip-color": "0.1.0",
"ts-node": "10.9.2",
"wait-on": "8.0.2",
"xml2js": "0.6.2"
},
"files": [
"force-app/main/default/classes/*",
"force-app/main/default/labels/*",
"force-app/main/default/lwc/*",
"force-app/main/default/cspTrustedSites/*",
"force-app/main/default/staticresources/*",
"scripts/npm",
"docs/out/quantic-docs.json"
]
}