-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
122 lines (122 loc) · 2.95 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "react-glider",
"description": "A ReactJS wrapper for glider.js",
"version": "4.0.2",
"private": false,
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Kevin Farrugia",
"email": "[email protected]",
"path": "https://github.com/kevinfarrugia"
},
"files": [
"dist",
"glider.defaults.css"
],
"repository": {
"type": "git",
"url": "https://github.com/kevinfarrugia/react-glider"
},
"scripts": {
"build": "tsc",
"build:dev": "node scripts/run build",
"clean": "node scripts/run clean",
"copy": "node scripts/run copy",
"dev": "node scripts/run serve -- --watch",
"fix-js": "npm run lint-js -- --fix",
"fix": "npm run fix-js",
"lint-js": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" .",
"lint": "npm run lint-js",
"prepare": "husky install",
"prepublish": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/glider-js": "^1.7.6",
"@types/jest": "^29.1.2",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"chokidar": "^3.5.3",
"css-loader": "^6.7.1",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^8.0.3",
"husky": "^7.0.4",
"jest": "^29.1.2",
"lint-staged": "^13.0.3",
"mkdirp": "^1.0.4",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"glider-js": "^1.7.7"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --no-ignore --fix"
]
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
],
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**",
"!**/*.d.ts",
"**/*.{ts,tsx}"
],
"transform": {
".+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/*.test.+(ts|tsx|js)"
],
"globals": {
"test-jest": {
"tsConfig": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"js"
]
}
}