This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.87 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
{
"name": "tailshake",
"version": "0.0.3",
"license": "MIT",
"repository": "https://github.com/GriffinSauce/tailshake.git",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Joris Griffioen (https://joris.rocks)",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"start": "npm run dev",
"dev": "./build.js -debug -watch -inline-sourcemap",
"build": "./build.js",
"build:declaration": "tsc --declaration --outFile dist/index.d.ts --emitDeclarationOnly --project ./tsconfig.build.json",
"prepublishOnly": "npm run build && npm run build:declaration",
"lint:es": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:ts": "npx tsc -p tsconfig.json --noEmit",
"lint": "yarn lint:ts && yarn lint:es",
"format": "prettier --write .",
"test": "jest",
"test-watch": "jest --watch",
"test:coverage": "jest --coverage",
"ts-coverage": "typescript-coverage-report",
"release": "release-it"
},
"dependencies": {
"tailwindcss": "^2.2.7"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/tailwindcss": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"babel-jest": "^27.0.6",
"esbuild": "^0.12.15",
"esbuild-jest": "^0.5.0",
"eslint": "^7.31.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-sonarjs": "^0.9.1",
"estrella": "^1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"release-it": "^14.10.1",
"typescript": "^4.1.3",
"typescript-coverage-report": "^0.6.0"
},
"volta": {
"node": "14.17.3",
"yarn": "1.22.10"
}
}