-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
120 lines (120 loc) · 3.89 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "va-gov-cms",
"version": "1.0.0",
"description": "NPM-managed testing and other utilities for the CMS.",
"main": "index.js",
"scripts": {
"build": "npm run build:js",
"watch": "npm run watch:js",
"build:js": "cross-env BABEL_ENV=legacy node ./scripts/js/babel-es6-build.js",
"build:js-dev": "cross-env NODE_ENV=development BABEL_ENV=legacy node ./scripts/js/babel-es6-build.js",
"watch:js": "cross-env BABEL_ENV=legacy node ./scripts/js/babel-es6-watch.js",
"watch:js-dev": "cross-env NODE_ENV=development BABEL_ENV=legacy node ./scripts/js/babel-es6-watch.js",
"eslint": "eslint --max-warnings 0 --config .eslintrc.json",
"eslint-all": "eslint --max-warnings 0 --config .eslintrc.json docroot/modules/custom/**/*.es6.js docroot/themes/custom/**/*.es6.js",
"stylelint-modules": "npx stylelint 'docroot/modules/custom/**/*.css'",
"stylelint-themes": "npx stylelint 'docroot/themes/custom/**/*.scss'",
"stylelint": "npx stylelint",
"test:cypress": "cypress run -e \"TAGS=$CYPRESS_TAGS\"",
"test:cypress:verify": "cypress verify",
"test:cypress:interactive": "cypress open -e \"TAGS=not @piv,VAGOV_INTERACTIVE=true\"",
"test:cypress:parallel": "cypress-parallel -v --reporter 'spec' --script test:cypress --threads 3 --strictMode false --specsDir tests/cypress/integration --weightsJson tests/cypress/integration/weights.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/department-of-veterans-affairs/va.gov-cms.git"
},
"author": "Department of Veterans Affairs",
"license": "GPLv2",
"bugs": {
"url": "https://github.com/department-of-veterans-affairs/va.gov-cms/issues"
},
"homepage": "https://github.com/department-of-veterans-affairs/va.gov-cms#readme",
"directories": {
"test": "tests"
},
"keywords": [
"axe",
"tests"
],
"engines": {
"node": ">=16.0"
},
"overrides": {
"@cypress/request": "^3.0.0"
},
"devDependencies": {
"@axe-core/webdriverjs": "^4.6.0",
"@babel/core": "^7.21",
"@badeball/cypress-cucumber-preprocessor": "^18.0.4",
"@cypress/webpack-preprocessor": "^5.17.1",
"@faker-js/faker": "^6.3.1",
"@octokit/rest": "^19.0.7",
"@testing-library/cypress": "^9.0.0",
"axe-core": "^4.6.3",
"babel-plugin-add-header-comment": "^1.0.3",
"babel-preset-env": "^1.7.0",
"chokidar": "^3.5.3",
"cross-env": "^5.2.1",
"cypress": "^12.17.4",
"cypress-axe": "^1.4.0",
"cypress-failed-log": "^2.10.0",
"cypress-file-upload": "^5.0.8",
"cypress-parallel": "^0.13.0",
"cypress-real-events": "^1.7.6",
"cypress-visual-regression": "^2.1.1",
"cypress-xpath": "^1.6.2",
"debug": "^3.2.7",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-formatter-rdjson": "^1.0.5",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-yml": "^0.15.0",
"json-schema": ">=0.4.0",
"pixelmatch": "^5.3.0",
"pngjs": "^6.0.0",
"prettier": "^2.8.4",
"qs": "^6.11.2",
"stylelint": "^15.10.3",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-order": "^6.0.3"
},
"babel": {
"env": {
"development": {
"presets": [
[
"env",
{
"modules": "commonjs",
"targets": {
"node": "current"
}
}
]
]
},
"legacy": {
"presets": [
[
"env",
{
"modules": false
}
]
]
}
}
},
"cypress-cucumber-preprocessor": {
"stepDefinitions": [
"tests/cypress/integration/step_definitions/**/*.{js,ts}"
]
}
}