-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.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
{
"name": "tail-kit-packages",
"main": "dist/index.js",
"types": "types/index.d.ts",
"license": "MIT",
"keywords": [
"react",
"ui-kit",
"tailwindcss"
],
"scripts": {
"bootstrap": "lerna bootstrap --scope=\"@tail-kit/*\"",
"dev": "lerna run dev --stream",
"test:ci": "lerna run test:ci --stream",
"clean": "lerna run clean",
"build-lib": "lerna run build --stream --scope=\"@tail-kit/tail-kit\"",
"prebuild-website": "yarn bootstrap && yarn build-lib",
"build-website": "lerna run build --stream --scope=\"@tail-kit/website\"",
"lint": "eslint --no-error-on-unmatched-pattern --fix packages/**/*.{ts,tsx,js,jsx} website/**/*.{ts,tsx,js,jsx}",
"format": "prettier --no-error-on-unmatched-pattern --write packages/**/*.{ts,tsx,js,jsx,css,json} website/**/*.{ts,tsx,js,jsx,css,json} *.{ts,js,json}"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"autoprefixer": "^10.3.1",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-standard": "^4.0.1",
"lerna": "^4.0.0",
"prettier": "^2.1.1",
"postcss": "^8.3.5",
"tailwindcss": "^2.2.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test:ci"
}
},
"repository": {
"type": "git",
"url": "https://github.com/dopplr-labs/tail-kit.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"private": true,
"workspaces": {
"packages": [
"packages/*",
"website"
]
}
}