forked from department-of-veterans-affairs/va.gov-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.43 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
{
"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 -c .eslintrc.json --no-eslintrc",
"eslint-all": "eslint --max-warnings 0 -c .eslintrc.json --no-eslintrc 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:interactive": "cypress open -e \"TAGS=not @ignore and not @piv,VAGOV_INTERACTIVE=true\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/department-of-veterans-affairs/va.gov-cms.git"
},
"author": "andrey",
"license": "ISC",
"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",
"dependencies": {},
"directories": {
"test": "tests"
},
"keywords": [
"axe",
"tests"
],
"engines": {
"node": ">=14.15.0"
},
"devDependencies": {
"@axe-core/webdriverjs": "^4.4.2",
"@testing-library/cypress": "^8.0.2",
"axe-core": "^4.4.1",
"babel-core": "^6.26.0",
"babel-plugin-add-header-comment": "^1.0.3",
"babel-preset-env": "^1.4.0",
"chokidar": "^3.5.2",
"cross-env": "^5.1.3",
"cypress": "~8.3.0",
"cypress-axe": "^0.14.0",
"cypress-cucumber-preprocessor": "^4.3.1",
"cypress-file-upload": "^5.0.8",
"cypress-real-events": "^1.6.0",
"cypress-visual-regression": "^1.6.3",
"cypress-xpath": "^1.6.2",
"debug": "^2.6.9",
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-formatter-rdjson": "^1.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"@faker-js/faker": "^6.1.2",
"json-schema": ">=0.4.0",
"pixelmatch": "^5.2.1",
"pngjs": "^6.0.0",
"prettier": "^2.2.1",
"stylelint": "^13.8.0",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-order": "^4.1.0"
},
"babel": {
"env": {
"development": {
"presets": [
[
"env",
{
"modules": "commonjs",
"targets": {
"node": "current"
}
}
]
]
},
"legacy": {
"presets": [
[
"env",
{
"modules": false
}
]
]
}
}
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true,
"nonGlobalStepBaseDir": "tests/cypress/integration/behavioral",
"stepDefinitions": "tests/cypress/integration/behavioral"
}
}