-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
{
"name": "prettier-plugin-tailwind-css",
"version": "0.0.5-development",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "./node_modules/.bin/rollup -c",
"test": "jest --watch",
"test:ci": "jest --ci",
"prettier": "prettier --write .",
"lint": "eslint .",
"lint:ci": "eslint",
"semantic-release": "semantic-release"
},
"dependencies": {
"prettier": "^2.0.5"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-babel": "^5.2.0",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@types/prettier": "^2.0.2",
"@types/react": "^16.9.46",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"babel-cli": "^6.26.0",
"babel-jest": "^26.3.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.11",
"react": "^16.13.1",
"rollup": "^2.26.5",
"rollup-plugin-copy": "^3.3.0",
"semantic-release": "^17.1.1",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/marcosvega91/prettier-tailwind.git"
}
}