-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
{
"name": "presetter-preset-web",
"version": "4.4.0",
"description": "An opinionated presetter preset for a web project",
"keywords": [
"presetter",
"preset"
],
"homepage": "https://github.com/alvis/presetter#readme",
"bugs": {
"url": "https://github.com/alvis/presetter/issues"
},
"license": "MIT",
"author": "Alvis HT Tang <[email protected]>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/alvis/presetter.git"
},
"scripts": {
"bootstrap": "run prepare",
"build": "run build",
"coverage": "run coverage --",
"lint": "run lint --",
"prepublishOnly": "run prepare && run prepublishOnly",
"test": "run test --",
"watch": "run watch --"
},
"peerDependencies": {
"@testing-library/dom": "^9.0.0",
"@testing-library/jest-dom": "^5.0.0",
"@testing-library/user-event": "^14.0.0",
"autoprefixer": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.0.0",
"eslint-plugin-testing-library": "^5.0.0",
"jest-environment-jsdom": "^29.0.0",
"postcss": "^8.0.0",
"presetter": "workspace:*",
"tailwindcss": "^3.0.0"
},
"devDependencies": {
"presetter": "workspace:*"
},
"dependencies": {
"presetter-types": "workspace:*"
}
}