-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
111 lines (111 loc) · 3.83 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
109
110
111
{
"name": "agds-next",
"version": "0.0.1",
"private": true,
"license": "MIT",
"main": "index.js",
"workspaces": [
"packages/*",
"docs",
"example-site",
"yourgov"
],
"scripts": {
"build": "preconstruct build",
"build-site": "concurrently 'yarn:*(!docs):build' --kill-others-on-fail && yarn docs:build",
"clean": "rimraf \"**/node_modules\" \"**/yarn-error.log\" \"**/out.log\" \"**/.DS_Store\" \"**/dist\" \"**/out\" \"**/.next\"",
"docs:build": "yarn --cwd docs build",
"docs:dev": "yarn --cwd docs dev",
"docs:generate-component-props": "yarn --cwd docs generate-component-props",
"docs:generate-template-images": "yarn --cwd docs generate-template-images",
"example:build": "yarn --cwd example-site build",
"example:dev": "yarn --cwd example-site dev",
"format": "prettier --write \"**/*.{js,jsx,json,ts,tsx,md,mdx,yml,yaml}\"",
"fresh": "yarn clean && yarn",
"postinstall": "manypkg check && preconstruct dev",
"lint": "concurrently 'yarn:lint:*' --kill-others-on-fail",
"lint:docs": "yarn --cwd docs lint",
"lint:example": "yarn --cwd example-site lint",
"lint:packages": "yarn eslint \"packages/**/*.{js,jsx,ts,tsx}\"",
"lint:prettier": "prettier --check \"**/*.{js,jsx,json,ts,tsx,md,mdx,yml,yaml}\"",
"lint:storybook": "yarn eslint \".storybook/**/*.{js,jsx,ts,tsx}\"",
"lint:typescript": "tsc --noEmit",
"lint:yourgov": "yarn --cwd yourgov lint",
"new:icon": "plop --plopfile scripts/new-icon/script.mjs && yarn format && yarn manypkg fix && yarn install && yarn test",
"new:package": "plop --plopfile scripts/new-package.mjs && yarn format && yarn manypkg fix && yarn install",
"playroom:build": "yarn --cwd docs playroom:build",
"playroom:dev": "yarn --cwd docs playroom:dev",
"publish-changed": "yarn build && yarn changeset publish",
"storybook:build": "storybook build -o docs/public/storybook",
"storybook:dev": "storybook dev --port 6006 --no-open",
"test": "jest",
"yourgov:build": "yarn --cwd yourgov build",
"yourgov:dev": "yarn --cwd yourgov dev"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@changesets/cli": "^2.26.0",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/react": "^11.7.0",
"@faker-js/faker": "^7.6.0",
"@manypkg/cli": "^0.20.0",
"@preconstruct/cli": "^2.8.10",
"@preconstruct/next": "^4.0.0",
"@storybook/addon-a11y": "^8.4.7",
"@storybook/addon-actions": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/nextjs": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-webpack5": "^8.4.7",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.3",
"@types/jest-axe": "^3.5.5",
"@types/node": "18.14.0",
"@types/react": "18.0.12",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"babel-jest": "^29.6.2",
"babel-loader": "^9.1.2",
"concurrently": "^8.2.2",
"eslint": "^8.39.0",
"eslint-config-next": "^13.4.12",
"eslint-config-prettier": "^8.8.0",
"facepaint": "^1.2.1",
"html-validate": "^8.27.0",
"jest": "^29.7.0",
"jest-axe": "^8.0.0",
"jest-environment-jsdom": "^29.7.0",
"plop": "^3.1.1",
"prettier": "^3.0.0",
"prettier-plugin-packagejson": "^2.4.5",
"react": "18.1.0",
"react-dom": "18.1.0",
"rimraf": "^3.0.2",
"storybook": "^8.4.7",
"swr": "^1.3.0",
"typescript": "^4.7.4",
"webpack": "^5.97.0"
},
"engines": {
"node": "18"
},
"manypkg": {
"defaultBranch": "main",
"ignoredRules": [
"ROOT_HAS_DEV_DEPENDENCIES"
]
},
"preconstruct": {
"packages": [
"packages/*"
]
}
}