-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.45 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
{
"name": "@hypothesis/frontend-build",
"version": "3.0.0",
"description": "Hypothesis frontend build scripts",
"type": "module",
"exports": "./index.js",
"repository": "https://github.com/hypothesis/frontend-build",
"author": "Hypothesis developers",
"license": "BSD-2-Clause",
"files": [
"index.js",
"lib/*.js"
],
"devDependencies": {
"@types/eslint__js": "^8.42.3",
"@types/fancy-log": "^2.0.0",
"@types/glob": "^8.0.0",
"@types/karma": "^6.3.1",
"@types/node": "^22.0.0",
"@types/sass": "^1.16.1",
"@types/tailwindcss": "^3.0.2",
"autoprefixer": "^10.3.7",
"eslint": "^9.12.0",
"karma": "^6.3.4",
"postcss": "^8.3.9",
"prettier": "^3.0.0",
"rollup": "^4.0.2",
"sass": "^1.43.2",
"tailwindcss": "^3.0.11",
"typescript": "^5.0.2"
},
"dependencies": {
"commander": "^13.0.0",
"fancy-log": "^2.0.0",
"glob": "^11.0.0"
},
"peerDependencies": {
"autoprefixer": "^10.3.7",
"karma": "^6.3.4",
"postcss": "^8.3.9",
"rollup": "^4.0.2",
"sass": "^1.43.2",
"tailwindcss": "^3.0.11"
},
"peerDependenciesMeta": {
"tailwindcss": {
"optional": true
}
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true
},
"scripts": {
"checkformatting": "prettier --check '**/*.js'",
"format": "prettier --list-different --write '**/*.js'",
"lint": "eslint .",
"typecheck": "tsc"
},
"packageManager": "[email protected]"
}