-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
153 lines (153 loc) · 4.29 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"contributors": [
"Christopher Froehlich <[email protected]>",
"Tom Neilsen <[email protected]>"
],
"dependencies": {
"typescript": "^4.6.3"
},
"os": [
"linux",
"darwin",
"win32"
],
"cpu": [
"x64",
"ia32",
"arm64"
],
"description": "Create user friendly workflows for complex requirements, like eligibility or screener questionnaires",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/runtime": "^7.17.9",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@swc/core": "^1.2.168",
"@swc/helpers": "^0.3.8",
"@types/babel__core": "^7",
"@types/babel__plugin-transform-runtime": "^7",
"@types/babel__preset-env": "^7",
"@types/node": "^17.0.25",
"@types/rollup-plugin-peer-deps-external": "^2",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"all-contributors-cli": "^6.20.0",
"babel-loader": "^8.2.4",
"cross-env": "^7.0.3",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-align-assignments": "^1.1.2",
"eslint-plugin-align-import": "^1.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json-files": "^1.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"eslint-plugin-yaml": "^0.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.8",
"npm-check-updates": "^12.5.9",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^2.3.4",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"rollup": "^2.70.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^2.0.7",
"semantic-release": "^19.0.2",
"ts-node": "^10.7.0"
},
"engines": {
"node": "14.x - 18.x"
},
"homepage": "https://usds.github.io/questionable",
"keywords": [
"component library",
"design system",
"questionnaire",
"react component",
"react",
"survey",
"us web design",
"usds",
"uswds 2.0",
"uswds"
],
"license": "ISC",
"name": "questionable",
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
[
"@semantic-release/github",
{
"assets": [
{
"label": "TS distribution",
"path": "dist/**"
}
]
}
]
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"assets": [
"package.json",
"yarn.lock",
"CHANGELOG.md",
"README.md"
],
"message": "release: ${nextRelease.version} [skip ci] nn${nextRelease.notes}",
"path": "@semantic-release/git"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/usds/questionable.git"
},
"types": "types.d.ts",
"version": "1.6.0",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"b": "tsc -b",
"build": "yarn workspaces foreach -vpiR run build",
"bundle": "yarn workspaces foreach -vpiR run bundle",
"lint": "yarn workspaces foreach -vpiR run lint:fix",
"contributors:add": "all-contributors add",
"start": "yarn workspace @usds.gov/questionable-storybook start",
"prepare": "husky install",
"clean": "yarn workspaces foreach run clean",
"semantic-release": "semantic-release"
},
"workspaces": [
"packages/*"
]
}