-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.31 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.31 KB
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": "react-sliding-side-panel",
"version": "2.0.5",
"description": "A sliding panel for React applications",
"author": "Benedicte Giraud",
"license": "MIT",
"bugs": {
"url": "https://github.com/BenedicteGiraud/react-sliding-side-panel/issues"
},
"homepage": "https://github.com/BenedicteGiraud/react-sliding-side-panel#readme",
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BenedicteGiraud/react-sliding-side-panel.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc && node scripts/buildCSS.js",
"format": "prettier --write \"src/**/*.ts*\" ",
"format:check": "prettier --check \"src/**/*.ts*\" \"src/**/*.css\"",
"lint": "tslint -p tsconfig.json"
},
"keywords": [
"react",
"npm",
"module",
"node",
"sliding",
"side",
"pane",
"panel",
"menu"
],
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-transition-group": "^4.4.5"
},
"devDependencies": {
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@types/react-transition-group": "^4.4.0",
"clean-css": "^4.2.3",
"prettier": "^2.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5"
}
}