forked from GSA/10x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.07 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
{
"name": "10x-website",
"version": "0.1.1",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.29",
"@fortawesome/free-regular-svg-icons": "^5.13.1",
"@fortawesome/free-solid-svg-icons": "^5.13.1",
"@fortawesome/react-fontawesome": "^0.1.11",
"@mdx-js/runtime": "^1.6.11",
"@reduxjs/toolkit": "^1.6.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"classnames": "^2.2.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"framer-motion": "^2.9.4",
"js2xmlparser": "^4.0.1",
"netlify-cms-app": "^2.15.20",
"node-env-run": "^4.0.2",
"node-fetch": ">=2.6.1",
"node-sass": "^6.0.0",
"puppeteer": "^9.0.0",
"react": "^16.13.1",
"react-axe": "^3.5.3",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-moment": "^0.9.7",
"react-redux": "^7.1.3",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"react-snap": "^1.23.0",
"react-snapshot": "^1.3.0",
"recharts": "^2.1.8",
"remark": "^13.0.0",
"remark-autolink-headings": "^6.0.1",
"remark-extract-toc": "^0.1.1",
"remark-parse": "^9.0.0",
"remark-slug": "^6.0.0",
"remark-toc": "^7.0.0",
"sass-loader": "^11.1.1",
"trim": ">=0.0.3",
"trim-newlines": ">=3.0.1",
"typewriter-effect": "^2.17.0",
"uswds": "2.8.1",
"yaml": "^2.0.0-1"
},
"scripts": {
"index-content": "rm -rf src/app/json/* && node runIndex.js",
"start": "npm run index-content && react-scripts start",
"build2": "REACT_APP_BRANCH=$BRANCH react-scripts build",
"build": "REACT_APP_BRANCH=$BRANCH react-scripts build && REACT_APP_BRANCH=$BRANCH react-snap",
"test": "react-scripts test",
"test:coverage": "npm test -- --coverage --watchAll=false",
"federalist": "npm run federalist:build && npm run federalist:copy",
"federalist:build": "npm run index-content && npm run build",
"federalist:copy": "mkdir -p _site && rm -rf _site/* && cp -r build/* _site/"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"reactSnap": {
"puppeteerExecutablePath": "/usr/bin/google-chrome",
"puppeteerArgs": [
"--no-sandbox",
"--disable-setuid-sandbox",
"--disable-gpu",
"--disable-dev-shm-usage",
"--unsafe-perm=true"
]
},
"jest": {
"collectCoverageFrom": [
"src/components/**/*.js",
"src/app/**/*.js",
"src/features/**/*.js",
"src/routes/**/*.js",
"src/templates/**/*.js",
"!src/app/index.js",
"!src/**/context.js",
"!src/test/**/*.js",
"!src/routes/index.js",
"!src/routes/AnimatedRoutes/index.js"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
}
}