forked from spatie/wires
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 993 Bytes
/
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
{
"name": "@spatie/wires",
"version": "0.5.0-beta.6",
"main": "src/index.js",
"license": "MIT",
"dependencies": {
"next-transpile-modules": "^3.0.0",
"nprogress": "^0.2.0"
},
"devDependencies": {
"@tailwindcss/custom-forms": "^0.2.1",
"autoprefixer": "^9.7.4",
"cssnano": "^4.1.10",
"husky": "^4.2.1",
"lint-staged": "^10.0.3",
"postcss-cli": "^6.1.1",
"prettier": "^1.16.3",
"tailwindcss": "1.2.0-canary.5"
},
"peerDependencies": {
"next": "^9.2.1",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"scripts": {
"prepublish": "$npm_execpath run styles",
"styles": "postcss src/styles/index.css -o styles.css",
"format": "prettier \"**/*.{css,js}\" --write --ignore-path .gitignore"
},
"files": [
"src",
"next.config.js",
"styles.css"
],
"lint-staged": {
"**/*.{css,js}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}