This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
79 lines (79 loc) · 2.27 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
{
"name": "vote.gov",
"version": "1.0.0",
"main": "gulpfile.js",
"config": {
"votegov": {
"hugo": {
"en": "config.json"
},
"urls": {
"staging": "https://vote-gov-staging.apps.cloud.gov",
"production": "https://vote.gov/"
}
}
},
"scripts": {
"gulp": "gulp",
"hugo": "hugo",
"dev": "gulp dev",
"federalist": "export NODE_ENV=production && npm run build",
"build": "export NODE_ENV=production && gulp buildWebsite",
"start": "export NODE_ENV=production && gulp website",
"test": "gulp test",
"deploy": "gulp deploy",
"cy:open": "cypress open",
"cy:test": "cypress run --spec 'cypress/e2e/tests/**/*'",
"cy:axe": "cypress run --spec 'cypress/e2e/accessibility/**/*'",
"cy:links": "cypress run --spec 'cypress/e2e/internalLinks/**/*'",
"cy:proofer": "cypress run --spec 'cypress/e2e/externalLinks/**/*'",
"testSuite": "npm run cy:test && npm run cy:links && npm run cy:axe"
},
"repository": {
"type": "git",
"url": "git+https://github.com/18F/vote-gov.git"
},
"author": "",
"bugs": {
"url": "https://github.com/18F/vote-gov/issues"
},
"homepage": "https://github.com/18F/vote-gov#readme",
"license": "CC0-1.0",
"dependencies": {
"@uswds/uswds": "^3.7.1",
"ansi-colors": "^4.1.1",
"autoprefixer": "^10.4.13",
"browserify": "^17.0.0",
"cross-spawn": "^7.0.3",
"cypress-real-events": "^1.11.0",
"fancy-log": "^2.0.0",
"gulp": "^4.0.2",
"gulp-dart-scss": "^1.1.0",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"postcss": "^8.4.31",
"sass": "^1.56.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"vote-gov-nvrf-app": "github:usagov/vote-gov-nvrf-app#v0.13.0"
},
"devDependencies": {
"axe-core": "^4.5.2",
"cypress": "^13.2.0",
"cypress-axe": "^1.5.0",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"gulp-eslint": "^6.0.0",
"gulp-sourcemaps": "^3.0.0",
"hugo-bin": "^0.117.0",
"stylelint": "^15.10.1",
"stylelint-config-standard-scss": "^10.0.0"
},
"overrides": {
"glob-parent": "6.0.2",
"postcss": "^8.4.31"
}
}