-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
71 lines (71 loc) · 2.26 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
{
"name": "react-sidenav",
"version": "4.0.6",
"description": "A Simple SideBar Navigation written in React",
"author": "Warren Mira",
"scripts": {
"start": "webpack-dev-server --mode development --content-base playground src/playground/index.tsx ",
"start:compact": "webpack-dev-server --mode development --content-base playground src/playground/compact.tsx ",
"predist": "rimraf dist",
"dist-build": "tsc && cp package.json dist && cp README.md dist ",
"dist": "npm run lint && npm run test:cover && npm run dist-build",
"test": "jest",
"test:cover": "jest --collectCoverage",
"test:watch": "jest --watch",
"lint": "tslint --project tsconfig.json",
"dist:patch": "npm version patch && git push --follow-tags",
"dist:minor": "npm version minor && git push --follow-tags",
"dist:major": "npm version major && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/wmira/react-sidenav"
},
"bugs": {
"url": "https://github.com/wmira/react-sidenav/issues"
},
"homepage": "https://github.com/wmira/react-sidenav",
"keywords": [
"react",
"react-component",
"side navigation",
"sidenav",
"menu",
"vertical menu",
"navigation"
],
"dependencies": {},
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@testing-library/react": "^8.0.1",
"@types/jest": "^24.0.11",
"@types/node": "^11.13.4",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "^4.1.14",
"babel-loader": "^8.0.5",
"jest": "^24.7.1",
"jest-dom": "^3.1.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "^4.2.0",
"ts-loader": "^5.3.3",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.5.1",
"typescript-tslint-plugin": "^0.3.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}