-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
73 lines (73 loc) · 1.94 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": "react-simple-resizer",
"version": "2.1.0",
"description": "An intuitive React component set for multi-column resizing",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "parcel ./demo/index.html",
"build:demo": "rm -rf ./demo/dist/* && parcel build ./demo/index.html --out-dir ./demo/dist --public-url ./",
"build": "rm -rf ./dist && tsc -p ./tsconfig.build.json",
"prettier": "prettier '@(src|demo)/**/*.@(ts|tsx|html|less)' --write",
"lint": "tslint -p tsconfig.json --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeetCode-OpenSource/react-simple-resizer.git"
},
"keywords": [
"react",
"resize",
"resizer",
"multi-column"
],
"bugs": {
"url": "https://github.com/LeetCode-OpenSource/react-simple-resizer/issues"
},
"homepage": "https://github.com/LeetCode-OpenSource/react-simple-resizer#readme",
"author": "LeetCode front-end team",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"tslint -p tsconfig.json --fix",
"git add"
],
"*.{less,html}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"husky": "^4.0.0",
"less": "^4.0.0",
"lint-staged": "^10.0.1",
"normalize.css": "^8.0.1",
"parcel-bundler": "^1.10.3",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"prettier": "2.2.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"tslib": "^2.0.0",
"tslint": "^6.0.0",
"tslint-eslint-rules": "^5.3.1",
"tslint-react": "^5.0.0",
"tslint-sonarts": "^1.7.0",
"typescript": "^3.1.6"
},
"dependencies": {
"rxjs": "^6.3.3"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^17.0.0"
}
}