-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.06 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
{
"name": "react-addressable-sliders",
"version": "0.1.5",
"description": "Multi-range slider made with react with addressable and identifiable ranges",
"private": false,
"author": "Giovanni Caiazzo",
"main": "lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/giovanni-caiazzo/react-addressable-sliders.git"
},
"bugs": {
"url": "https://github.com/giovanni-caiazzo/react-addressable-sliders/issues"
},
"keywords": [
"react",
"slider",
"multi-range",
"addressable",
"typescript"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.14.5",
"@types/jest": "^27.0.2",
"@types/prop-types": "^15.7.4",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"babel-loader": "^8.2.2",
"babel-preset-react": "^6.24.1",
"css-loader": "^5.2.6",
"html-webpack-plugin": "^5.3.1",
"jest": "^27.3.1",
"jest-cli": "^27.3.1",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"style-loader": "^2.0.0",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.39.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"scripts": {
"start": "webpack serve --entry ./src/index-dev.tsx",
"build": "rm -rfv lib/* && tsc && babel ./lib -d lib --config-file ./.babelrc",
"format": "yarn run format:prettier",
"format:prettier": "node_modules/.bin/prettier --config .prettierrc \"src/**/*.*\" --write",
"jest": "jest --config jest.config.js",
"publish-new-patch": "yarn jest && yarn build && npm version patch && npm publish"
}
}