-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
108 lines (108 loc) · 3.4 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
{
"name": "formation-monorepo",
"version": "0.0.1",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/department-of-veterans-affairs/veteran-facing-services-tools.git"
},
"private": true,
"scripts": {
"prebootstrap": "node prebuild.js",
"test": "lerna run test",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"deploy": "lerna run deploy --scope=vagov-documentation",
"lint": "npx vagov-eslint lint:js",
"lint:changed": "npx vagov-eslint lint:js:changed",
"lint:js": "npx vagov-eslint lint",
"lint:js:fix": "npx vagov-eslint lint:js:fix",
"lint:js:changed": "npx vagov-eslint lint:js:changed",
"lint:js:changed:fix": "npx vagov-eslint lint:js:changed:fix",
"postinstall": "yarn bootstrap && node ./scripts/check-node-version.js",
"prepublishOnly": "node ./scripts/prepublish.js",
"publish": "lerna publish",
"version": "lerna version --no-git-tag-version",
"jest": "jest"
},
"browserslist": [
"Chrome 60",
"Firefox 56",
"iOS 9",
"Edge 14",
"ChromeAndroid 64",
"Safari 10",
"ie 11"
],
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"autoprefixer": "^9.5.1",
"axe-core": "^4.3.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^27.2.1",
"babel-loader": "^8.0.0",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-istanbul": "^6.1.1",
"babel-plugin-lodash": "^3.2.8",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.2",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.2",
"clean-webpack-plugin": "^2.0.1",
"colors": "^1.1.2",
"copy-webpack-plugin": "^5.0.2",
"css-loader": "^0.28.7",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.7.1",
"file-loader": "4.0.0",
"fs-extra": "^7.0.1",
"glob": "^7.1.2",
"is-docker": "^1.1.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"lerna": "^5.6.1",
"mini-css-extract-plugin": "^2.3.0",
"mkdirp": "^1.0.4",
"mocha": "^4.0.1",
"ncp": "^2.0.0",
"postcss-loader": "^3.0.0",
"promisify-node": "^0.5.0",
"react": "^16.7.0",
"react-docgen": "^2.19.0",
"react-dom": "^16.7.0",
"react-router": "3",
"react-test-renderer": "^16.7.0",
"recast": "^0.20.4",
"sass": "~1.55.0",
"sass-loader": "^12.1.0",
"semver": "^7.3.2",
"sinon": "^4.1.6",
"style-loader": "^0.19.0",
"uswds": "1.6.14",
"vagov-eslint": "file:./packages/vagov-eslint",
"webpack": "^5.50.0"
},
"dependencies": {
"graphql": "^14.5.3"
},
"engines": {
"node": ">=14.15.0"
}
}