forked from wAISw/react-placeholder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.34 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.34 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
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": "react-placeholder",
"version": "4.2.0",
"description": "A React component to easily replicate your page with nice placeholders while the content is loading",
"main": "lib",
"scripts": {
"test": "jest",
"build": "rm -rf lib && mkdir lib && sass src:lib && tsc",
"preversion": "npm run typecheck && npm run test",
"prepublishOnly": "npm run build",
"start": "styleguidist server",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git@github.com:buildo/react-placeholder"
},
"keywords": [
"react",
"react-component",
"placeholder",
"filler",
"loading",
"paragraph"
],
"author": "Francesco Cioria <francesco@buildo.io>",
"license": "ISC",
"bugs": {
"url": "https://github.com/buildo/react-placeholder/issues"
},
"files": [
"lib"
],
"homepage": "https://github.com/buildo/react-placeholder",
"typings": "lib",
"devDependencies": {
"@babel/core": "^7.22.17",
"@babel/preset-env": "^7.22.15",
"@cfaester/enzyme-adapter-react-18": "^0.7.1",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/enzyme": "^3.10.13",
"@types/jest": "^29.5.4",
"@types/jsdom": "^21.1.2",
"@types/lodash.flatten": "^4.4.7",
"@types/node": "18",
"@types/react": "^18.2.21",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"enzyme": "^3.11.0",
"file-loader": "^6.2.0",
"jest": "^29.7.0",
"jsdom": "^22.1.0",
"lodash.flatten": "^4.4.0",
"progress-bar-webpack-plugin": "^2.1.0",
"raf": "^3.4.1",
"raw-loader": "^0.5.1",
"react": "^18.2.0",
"react-docgen-typescript": "^1.16.1",
"react-dom": "^18.2.0",
"react-styleguidist": "^13.1.1",
"react-test-renderer": "^18.2.0",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2"
},
"peerDependencies": {
"react": "^18"
},
"jest": {
"testEnvironmentOptions": {
"url": "http://localhost"
},
"setupFiles": [
"raf/polyfill",
"<rootDir>/tests/setup.js"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(.*[.](test))[.](tsx?)$",
"moduleFileExtensions": [
"js",
"ts",
"tsx"
]
}
}