This repository has been archived by the owner on Jan 29, 2024. It is now read-only.
forked from Sharcoux/slider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.42 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
{
"name": "@sharcoux/slider",
"version": "4.0.4",
"homepage": "https://github.com/Sharcoux/slider",
"author": {
"name": "François Billioud",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/Sharcoux/slider/issues",
"email": "[email protected]"
},
"license": "ISC",
"scripts": {
"test": "jest",
"prepare": "tsc",
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"lint": "eslint --fix .",
"build": "webpack",
"release": "release-it",
"web": "webpack-dev-server --open --mode development"
},
"peerDependencies": {
"react": ">=16.13.1",
"react-dom": ">=16.13.1",
"react-native": ">=0.63.2",
"react-native-web": ">=0.13.4"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/runtime": "^7.11.0",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.8",
"@types/react": "^16.9.44",
"@types/react-native": "^0.63.2",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"babel-jest": "^26.2.2",
"babel-loader": "^8.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.6.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-standard": "^4.0.1",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^26.2.2",
"lint-staged": "^10.2.11",
"metro-react-native-babel-preset": "^0.61.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-native": "^0.63.2",
"react-native-typescript-transformer": "^1.2.13",
"react-native-web": "^0.13.4",
"react-test-renderer": "16.13.1",
"release-it": "^13.6.6",
"ts-jest": "^26.1.4",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"files": [
"dist/*",
"src/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.[tj]s?(x)": [
"eslint . --fix",
"git add"
]
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:Sharcoux/slider.git"
}
}