-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.12 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
{
"name": "@movable/tailwind-config",
"version": "3.1.1",
"description": "Tailwind Config for Fluid",
"main": "index.js",
"repository": "[email protected]:movableink/tailwind-config.git",
"author": "Alex LaFroscia <[email protected]>",
"license": "MIT",
"files": [
"config",
"dist",
"index.js",
"plugins"
],
"scripts": {
"build": "tailwind build -i css/tailwind-imports.css --config index.js -o dist/fluid-tailwind.css",
"compress": "csso dist/fluid-tailwind.css --output dist/fluid-tailwind.min.css --source-map file --no-restructure",
"storybook": "start-storybook -s dist",
"lint": "eslint .",
"test": "ava",
"release": "release-it",
"prepare": "husky install",
"prepublishOnly": "yarn build && yarn compress",
"snapshot": "build-storybook && percy-storybook --widths=1280"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@movable/eslint-config": "^2.0.0",
"@movable/eslint-config-node": "^1.0.0",
"@movable/eslint-config-react": "^1.0.1",
"@movable/prettier-config": "^1.0.0",
"@percy/storybook": "^3.3.0",
"@release-it/conventional-changelog": "^3.0.1",
"@storybook/addon-a11y": "^6.2.5",
"@storybook/addon-backgrounds": "^6.2.5",
"@storybook/react": "^6.2.5",
"@whitespace/storybook-addon-html": "^5.0.0",
"ava": "^3.1.0",
"babel-loader": "^8.0.6",
"csso-cli": "^3.0.0",
"eslint": "^7.32.0",
"eslint-plugin-ava": "^12.0.0",
"htm": "^3.0.3",
"husky": "^8.0.1",
"lint-staged": "^11.0.0",
"lorem-ipsum": "^2.0.3",
"postcss": "^8.2.9",
"prettier": "2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"release-it": "^14.10.0",
"seedrandom": "^3.0.5",
"tailwindcss": "^2.1.1"
},
"resolutions": {
"shell-quote": "^1.7.3",
"minimist": "^1.2.6"
},
"engines": {
"node": ">=10.18"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{json,md,yml}": "prettier --write"
},
"volta": {
"node": "14.19.3",
"yarn": "1.22.4"
},
"packageManager": "[email protected]"
}