forked from 7kms/react-illustration-series
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 810 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
{
"private": true,
"name": "react-illustration-series",
"version": "1.0.0",
"scripts": {
"start": "dumi dev",
"build": "dumi build",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"dumi": "^1.1.40",
"lint-staged": "^10.0.7",
"pangu": "^4.0.7",
"prettier": "^1.19.1",
"yorkie": "^2.0.0"
},
"repository": "[email protected]:7kms/react-illustration-series.git",
"author": "km7 <[email protected]>",
"license": "MIT"
}