-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
96 lines (96 loc) · 2.49 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
{
"name": "answers-hitchhiker-theme",
"version": "1.34.4",
"description": "A starter Search theme for hitchhikers",
"keywords": [
"jambo",
"templates",
"handlebars",
"site",
"answers",
"search",
"hitchhikers",
"yext"
],
"scripts": {
"test": "cross-env NODE_ICU_DATA=node_modules/full-icu jest --verbose",
"setup-test-site": "./test-site/scripts/setup.sh",
"build-test-site": "./test-site/scripts/build.sh",
"serve-test-site": "serve -p 5042 test-site/public",
"acceptance": "node ./tests/acceptance/index.js",
"percy": "npx percy exec -- node tests/percy/index.js",
"wcag": "./tests/wcag/index.js",
"extract-translations": "./translations/extract_translations.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yext/answers-hitchhiker-theme.git"
},
"bugs": {
"url": "https://github.com/yext/answers-hitchhiker-theme/issues"
},
"homepage": "https://github.com/yext/answers-hitchhiker-theme#readme",
"devDependencies": {
"@axe-core/puppeteer": "^4.5.2",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.23.2",
"@percy/cli": "^1.0.0-beta.67",
"@percy/puppeteer": "^2.0.0",
"@playwright/test": "^1.39.0",
"@types/jest": "^26.0.19",
"@types/node": "^20.9.0",
"@yext/cta-formatter": "^1.0.0",
"babel-jest": "^25.5.1",
"comment-json": "^4.1.1",
"cross-env": "^7.0.2",
"currency-symbol-map": "^5.0.1",
"escape-html": "^1.0.3",
"express": "^4.18.2",
"file-system": "^2.2.2",
"full-icu": "^1.3.1",
"handlebars": "^4.7.7",
"jambo": "^1.12.5",
"jest": "^25.5.2",
"libphonenumber-js": "^1.9.6",
"loader-utils": "^2.0.4",
"locale-currency": "0.0.2",
"lodash.clonedeep": "^4.5.0",
"postcss": "^8.4.14",
"puppeteer": "^13.7.0",
"serve": "^13.0.4",
"simple-git": "^2.24.0",
"testcafe": "^3.6.1",
"underscore.string": "^3.3.6",
"urijs": "^1.19.11",
"yargs": "^17.0.1"
},
"jest": {
"collectCoverageFrom": [
"static/**/*.js",
"hbshelpers/*.js"
],
"verbose": true,
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules",
"<rootDir>"
],
"testMatch": [
"<rootDir>/tests/**/*.js"
],
"modulePathIgnorePatterns": [
"/test-site/"
],
"testPathIgnorePatterns": [
"/fixtures/",
"/test-utils/",
"/test-site/",
"/browser-automation/",
"/percy/",
"/wcag/",
"/acceptance/"
]
}
}