-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
83 lines (83 loc) · 2.78 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
{
"name": "identity-site",
"version": "1.0.0",
"description": "login.gov static site",
"type": "module",
"scripts": {
"build:css": "build-sass assets/scss/*.scss --out-dir=_site/assets/css",
"watch:css": "npm run build:css -- --watch",
"build:js": "webpack --config webpack.config.js",
"watch:js": "webpack -w --config webpack.config.js",
"build": "concurrently \"npm:build:*\"",
"watch": "concurrently \"npm:watch:*\"",
"pages": "npm run build",
"normalize-yaml": "find _data -name '*.yml' | xargs npm exec normalize-yaml",
"optimize-assets": "svgo -r -f assets/img",
"lint:js": "eslint .",
"lint:css": "stylelint '_sass/**/*.scss' 'assets/scss/**/*.scss'",
"typecheck": "tsc",
"pretest": "if [ -z $SKIP_BUILD ]; then make build; fi",
"test": "NODE_ENV=test node --import=esbuild-esm-loader/register --import=./spec/spec_helper.js --test spec/**/*.js spec/**/*.ts spec/**/*.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSA-TTS/identity-site.git"
},
"author": "",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/GSA-TTS/identity-site/issues"
},
"engines": {
"node": ">=20"
},
"homepage": "https://github.com/GSA-TTS/identity-site#readme",
"main": "webpack.config.js",
"keywords": [],
"devDependencies": {
"@18f/eslint-plugin-identity": "^2.0.0",
"@18f/identity-normalize-yaml": "^2.0.0",
"@18f/identity-stylelint-config": "^3.0.0",
"@axe-core/puppeteer": "^4.8.1",
"@testing-library/dom": "^9.3.1",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^20.5.9",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"esbuild-esm-loader": "^0.3.1",
"eslint": "^8.31.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.0.1",
"get-port": "^5.1.1",
"jsdom": "^24.1.0",
"prettier": "^3.1.0",
"puppeteer": "^22.12.0",
"saxophonist": "^2.0.0",
"serve-handler": "^6.1.5",
"stylelint": "^15.11.0",
"svgo": "^2.8.0",
"typescript": "^4.9.4",
"vnu-jar": "^21.10.12"
},
"dependencies": {
"@18f/identity-address-search": "^3.4.0",
"@18f/identity-build-sass": "^3.0.0",
"@18f/identity-components": "^2.0.0",
"@18f/identity-design-system": "^9.4.0",
"@18f/identity-i18n": "^1.0.1",
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"babel-loader": "^9.1.3",
"concurrently": "^7.6.0",
"core-js": "^3.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.1"
}
}