-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.04 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
{
"name": "react-lucky-box",
"version": "0.2.0",
"main": "dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cettoana/react-lucky-box.git"
},
"scripts": {
"prebuild": "rm -rf dist && rm -rf compiled",
"build": "tsc && rollup -c",
"tslint": "tslint -c tslint.json --project tsconfig.json"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"semi": false
},
"devDependencies": {
"@types/react": "^16.7.13",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"prettier": "1.15.3",
"rollup": "^0.67.4",
"rollup-plugin-commonjs": "^9.2.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.1"
},
"peerDependencies": {
"react": "^15.4.0 || ^16.0.0"
}
}