-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.99 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.99 KB
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
{
"name": "@scrumble-nl/react-quick-loader",
"version": "2.1.0",
"description": "A quick and easy wrapper for retrieving information async while displaying a loader.\n\n",
"main": "lib/quick-loader.js",
"types": "lib/quick-loader.d.ts",
"scripts": {
"build": "rm -rf lib/ && tsc && cp -r src/scss lib/scss/",
"watch": "cp -r src/scss lib/ && (tsc --watch & fswatch -rv src/scss/ | xargs -n1 -I{} cp -rv src/scss lib/)",
"lint": "npm run eslint",
"eslint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"React",
"Bootstrap",
"Loader"
],
"repository": {
"type": "git",
"url": "git+https://github.com/scrumble-nl/react-quick-loader.git"
},
"author": "Scrumble",
"license": "ISC",
"bugs": {
"url": "https://github.com/scrumble-nl/react-quick-loader/issues"
},
"homepage": "https://github.com/scrumble-nl/react-quick-loader#readme",
"files": [
"lib/**/*"
],
"peerDependencies": {
"react": "^18.2.0 || ^19.1.0"
},
"dependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.1",
"axios": "^1.9.0",
"react": "^18.2.0 || ^19.1.0",
"react-dom": "^19.1.0",
"react-loading": "^2.0.3"
},
"devDependencies": {
"@eslint/compat": "^1.2.9",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.26.0",
"@scrumble-nl/eslint-plugin-scrumble-rules": "^2.1.3",
"@types/react": "^19.1.4",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
},
"directories": {
"lib": "lib"
}
}