-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
108 lines (108 loc) · 3.27 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-smart-tabs",
"version": "0.4.0",
"description": "A tab component with drag and drop functionality, add and close",
"main": "dist/bundle.js",
"types": "dist/components/index.d.ts",
"scripts": {
"test": "jest",
"dev": "webpack-dev-server --content-base ./dist --host 0.0.0.0 --hot --inline --colors --port 3000 --open",
"lint:format": "prettier --check '**/*.{ts,tsx,js,html}'",
"lint:scss": "stylelint 'src/**/*.scss'",
"lint:ts": "tslint -c tslint.json 'src/**/*.{ts,tsx}' && tslint -c tests/tslint.json 'tests/**/*.{ts,tsx}'",
"lint": "npm run lint:format && npm run lint:ts && npm run lint:scss",
"build": "rollup -c",
"semantic-release": "semantic-release --no-ci",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/EvoluxBR/react-smart-tabs"
},
"keywords": [
"React",
"Tabs",
"Hooks"
],
"author": "Gusavo Freire Santos",
"license": "MIT",
"devDependencies": {
"@semantic-release/git": "^7.0.16",
"@types/enzyme": "^3.10.1",
"@types/jest": "^24.0.17",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"awesome-typescript-loader": "^5.2.1",
"codecov": "^3.5.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest": "^24.8.0",
"postcss-preset-env": "^6.6.0",
"prettier": "1.18.2",
"react-test-renderer": "^16.8.6",
"rollup": "^1.17.0",
"rollup-plugin-scss": "^1.0.1",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-typescript": "^1.0.1",
"semantic-release": "^17.2.3",
"source-map-loader": "^0.2.4",
"stylelint": "^10.1.0",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^2.2.0",
"stylelint-order": "^3.0.1",
"stylelint-prettier": "^1.1.1",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"tslib": "^1.10.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.5.3",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"@types/uuid": "^3.4.5",
"autoprefixer": "^9.6.1",
"file-loader": "^4.2.0",
"handlebars": "^4.4.2",
"html-webpack-plugin": "^3.2.0",
"postcss": "^7.0.17",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.1.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-svg": "^10.0.17",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript2": "^0.22.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"tslint": "^5.18.0",
"url-loader": "^2.1.0",
"uuid": "^3.3.2"
},
"release": {
"repositoryUrl": "[email protected]:EvoluxBR/react-smart-tabs.git",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}