-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
97 lines (97 loc) · 4.12 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
{
"name": "@coveo/quantic",
"version": "2.50.0",
"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 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 copy-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",
"scratch:create": "sf org create scratch --set-default --definition-file config/project-scratch-def.json --alias \"LWC\"",
"setup:examples": "../../node_modules/.bin/ts-node scripts/build/deploy-community.ts",
"deploy:main": "sf project deploy start --target-org LWC --source-dir force-app/main",
"deploy:examples": "sf project deploy start --target-org LWC --source-dir force-app/examples",
"scratch:dev": "npm run scratch:create && npm run deploy:main && npm run setup:examples",
"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",
"release:phase1": "npm run-script -w=@coveo/release bump",
"release:phase2": "npm run publish:npm",
"release:phase5": "npm run publish:npm",
"publish:npm": "npm run-script -w=@coveo/release npm-publish",
"promote:npm:latest": "node ../../scripts/deploy/update-npm-tag.mjs latest",
"preinstall": "node scripts/npm/check-sfdx-project.js",
"postinstall": "node scripts/npm/setup-quantic.js"
},
"dependencies": {
"@coveo/bueno": "0.45.8",
"@coveo/headless": "2.62.0"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@ckeditor/jsdoc-plugins": "39.6.3",
"@coveo/release": "1.0.0",
"@lwc/compiler": "5.3.0",
"@lwc/eslint-plugin-lwc": "1.7.2",
"@octokit/graphql": "8.1.1",
"@octokit/graphql-schema": "15.12.0",
"@salesforce/eslint-config-lwc": "3.5.3",
"@salesforce/eslint-plugin-lightning": "1.0.0",
"@salesforce/sfdx-lwc-jest": "5.0.0",
"@types/strip-color": "0.1.2",
"@types/wait-on": "5.3.4",
"chalk": "4.1.2",
"change-case": "4.1.2",
"cypress": "13.8.0",
"cypress-real-events": "1.12.0",
"cypress-repeat": "2.3.4",
"dotenv": "16.4.5",
"eslint-plugin-jest": "28.2.0",
"fs-extra": "11.2.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"jsdoc": "4.0.2",
"jsdoc-tsimport-plugin": "1.0.5",
"mkdirp": "^3.0.0",
"ncp": "2.0.0",
"prettier-plugin-apex": "^2.0.0",
"strip-color": "0.1.0",
"ts-node": "10.9.2",
"wait-on": "7.2.0",
"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"
]
}