-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
100 lines (100 loc) · 3.04 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
{
"name": "Search.gov",
"private": true,
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage --runInBand --no-cache",
"lint:react": "codeclimate analyze -f text -e eslint app/javascript/components/ > coverage/lint-report",
"build:css": "bin/css",
"build:less": "lessc ./app/assets/stylesheets/$FILE.less ./app/assets/builds/$FILE.css --rootpath=./app/assets/stylesheets --math=always --include-path='./vendor/assets/stylesheets:./node_modules'",
"watch": "npm-watch"
},
"watch": {
"build:css": {
"extensions": "less",
"patterns": [
"app/assets/stylesheets"
],
"runOnChangeOnly": true
}
},
"dependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.20.1",
"@trussworks/react-uswds": "^6.1.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/webpack-env": "^1.18.0",
"@uswds/uswds": "^3.7.1",
"babel-loader": "^8.2.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"classnames": "^2.3.2",
"compression-webpack-plugin": "^10.0.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"express": "4.19.2",
"focus-trap-react": "^10.2.3",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"html-react-parser": "^3.0.16",
"i18n-js": "^4.3.0",
"mini-css-extract-plugin": "^2.6.1",
"moment": "^2.29.4",
"npm-watch": "^0.11.0",
"polished": "^4.2.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react_ujs": "^3.1.1",
"react-collapsed": "^4.0.4",
"react-dom": "^18.2.0",
"react-moment": "^1.1.3",
"react-sliding-pane": "^7.3.0",
"shakapacker": "~6.5.4",
"style-loader": "^3.3.1",
"styled-components": "^6.1.1",
"terser-webpack-plugin": "^5.3.6",
"typescript": "^4.9.5",
"webpack": "^5.76.0",
"webpack-assets-manifest": "^5.1.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0",
"webpack-sources": "^3.2.3"
},
"version": "0.1.0",
"babel": {
"presets": [
"./node_modules/shakapacker/package/babel/preset.js",
"@babel/preset-react"
]
},
"engines": {
"node": ">=16.0.0"
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@jest/globals": "^29.3.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/react-router-dom": "^5.3.3",
"@types/react-test-renderer": "^18.0.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.1",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.3.1",
"jest-fetch-mock": "^3.0.3",
"jest-styled-components": "^7.2.0",
"less": "^4.1.3",
"react-refresh": "^0.14.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.5"
}
}