forked from cfpb/consumerfinance.gov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.51 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
{
"name": "consumerfinance.gov",
"description": "The consumerfinance.gov website.",
"homepage": "https://www.consumerfinance.gov/",
"author": {
"name": "Consumer Financial Protection Bureau",
"email": "tech@cfpb.gov",
"url": "https://cfpb.github.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/cfpb/consumerfinance.gov.git"
},
"license": "SEE LICENSE IN TERMS.md",
"engines": {
"node": ">=16.x"
},
"browserslist": "> 0.5%, Chrome >= 76, Edge >= 98, Firefox >= 78, safari >= 12, not dead",
"dependencies": {
"@babel/core": "7.17.8",
"@babel/plugin-transform-runtime": "7.16.4",
"@babel/preset-env": "7.16.4",
"@cfpb/cfpb-atomic-component": "0.17.0",
"@cfpb/cfpb-buttons": "0.17.0",
"@cfpb/cfpb-core": "0.17.0",
"@cfpb/cfpb-expandables": "0.17.0",
"@cfpb/cfpb-forms": "0.17.0",
"@cfpb/cfpb-grid": "0.17.0",
"@cfpb/cfpb-icons": "0.17.0",
"@cfpb/cfpb-layout": "0.17.0",
"@cfpb/cfpb-notifications": "0.17.0",
"@cfpb/cfpb-pagination": "0.17.0",
"@cfpb/cfpb-tables": "0.17.0",
"@cfpb/cfpb-typography": "0.17.0",
"@cfpb/rental-assistance-finder": "0.4.0",
"@cypress/skip-test": "2.6.1",
"autoprefixer": "10.4.0",
"cfpb-chart-builder": "6.4.2",
"enforce-node-version": "0.1.0",
"esbuild": "0.14.34",
"fancy-log": "1.3.3",
"highcharts": "7.2.2",
"less": "4.1.2",
"lodash.clonedeep": "4.5.0",
"lodash.throttle": "4.1.1",
"number-to-words": "1.2.4",
"papaparse": "5.3.1",
"postcss": "8.4.4",
"svg-inline-loader": "0.8.2",
"xdr": "0.5.3"
},
"devDependencies": {
"cypress": "10.4.0",
"eslint": "8.22.0",
"jest": "28.1.2",
"jest-cli": "28.1.2",
"jest-environment-jsdom": "28.1.0",
"postcss-less": "6.0.0",
"snyk": "1.963.0",
"stylelint": "14.10.0",
"stylelint-config-recommended-less": "1.0.4"
},
"scripts": {
"enforce": "enforce-node-version",
"preinstall": "node scripts/preinstall.js",
"postinstall": "yarn enforce && node scripts/yarn/apps-install && ./scripts/check-npm-cache.sh",
"lint": "eslint --ignore-pattern node_modules './{cfgov/unprocessed,config,esbuild,scripts,test}/**/*.js' --fix && stylelint './cfgov/unprocessed/**/*.{css,less}' --fix",
"jest": "jest",
"test": "yarn lint && yarn jest",
"snyk": "snyk test",
"copy": "yarn build copy",
"styles": "yarn build styles",
"scripts": "yarn build scripts",
"watch": "yarn build watch",
"build": "node ./esbuild/build.js"
},
"snyk": true
}