-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
154 lines (154 loc) · 3.79 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
154
{
"name": "@texastribune/queso-ui",
"version": "10.4.1",
"description": "Asset library of SCSS and SVG files",
"scripts": {
"prettier": "prettier --write './docs/**/*.js'",
"lint:css": "stylelint 'assets/**/**.scss'",
"lint:js": "eslint docs/config --ext .ts,.js",
"lint": "npm run lint:css && npm run lint:js",
"build": "npm run compile && SITE_ENV=production node docs/config/tasks/build.js && SITE_ENV=production eleventy --pathprefix=queso-ui",
"dev": "npm run compile && SITE_ENV=development node docs/config/tasks/build.js && SITE_ENV=development eleventy --serve",
"test": "npm run lint && npm run build",
"release": "np --any-branch",
"compile": "tsc",
"docs": "npm run compile && SITE_ENV=development node docs/src/data/docs.js",
"dates": "npm run compile && SITE_ENV=development node docs/config/tasks/build.js && SITE_ENV=workspace eleventy --serve"
},
"engines": {
"npm": ">=8.0.0 <9.0.0",
"node": ">=16.0.0 <20.0.0"
},
"files": [
"/assets"
],
"repository": {
"type": "git",
"url": "https://github.com/texastribune/queso-ui.git"
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"airbnb-base",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"settings": {
"import/resolver": {
"node": {
"extensions": [
".js",
".ts"
]
}
}
},
"rules": {
"no-console": "error",
"no-unused-expressions": "off",
"no-underscore-dangle": [
"error",
{
"allowAfterThis": true
}
],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
]
}
},
"prettier": {
"bracketSpacing": true,
"printWidth": 80,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5"
},
"stylelint": {
"rules": {
"block-no-empty": null,
"color-no-invalid-hex": true,
"comment-empty-line-before": [
"always",
{
"ignore": [
"stylelint-commands",
"after-comment"
]
}
],
"declaration-colon-space-after": "always",
"indentation": 2,
"max-empty-lines": 2,
"rule-empty-line-before": [
"always",
{
"except": [
"first-nested"
],
"ignore": [
"after-comment"
]
}
],
"unit-allowed-list": [
"em",
"rem",
"%",
"s",
"px",
"ms",
"vh",
"fr",
"deg"
]
}
},
"license": "MIT",
"author": "The Texas Tribune Engineering Team <[email protected]>",
"bugs": {
"url": "https://github.com/texastribune/queso-ui/issues"
},
"homepage": "https://github.com/texastribune/queso-ui#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@texastribune/queso-tools": "3.0",
"@types/kss": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"axios": "^1.6.4",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.0",
"fast-glob": "^3.0.1",
"fs-extra": "^10.0.0",
"kss": "git+https://github.com/kss-node/kss-node.git",
"markdown-it": "^12.3.2",
"np": "^8.0.4",
"nunjucks": "^3.1.7",
"ora": "^5.1.0",
"passes-wcag": "^0.2.1",
"prettier": "2.1.2",
"puppeteer": "^19.4.0",
"stylelint": "^13.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"modern-normalize": "^2.0.0",
"sass-mq": "^6.0.0"
}
}