-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
90 lines (90 loc) · 2.32 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
{
"name": "react-placeholder",
"version": "4.1.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 && node-sass src -o lib && tsc",
"preversion": "npm run typecheck && npm run test",
"prepublishOnly": "npm run build",
"start": "styleguidist server",
"typecheck": "tsc --noEmit",
"release-version": "smooth-release"
},
"repository": {
"type": "git",
"url": "[email protected]:buildo/react-placeholder"
},
"keywords": [
"react",
"react-component",
"placeholder",
"filler",
"loading",
"paragraph"
],
"author": "Francesco Cioria <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/buildo/react-placeholder/issues"
},
"files": [
"lib"
],
"homepage": "https://github.com/buildo/react-placeholder",
"typings": "lib",
"dependencies": {},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/node": "12.12.17",
"@types/react": "^16.9.56",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-buildo": "^0.1.1",
"css-loader": "^0.28.11",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"file-loader": "^1.1.11",
"jest": "^26.6.3",
"lodash": "^4.17.20",
"node-sass": "^4.14.1",
"progress-bar-webpack-plugin": "^1.12.1",
"raf": "^3.4.1",
"raw-loader": "^0.5.1",
"react": "^16.8.0",
"react-docgen-typescript": "^1.16.1",
"react-dom": "^16.8.0",
"react-styleguidist": "^6.0.33",
"react-test-renderer": "^16.8.0",
"sass-loader": "^6.0.7",
"smooth-release": "^8.0.9",
"ts-jest": "^26.5.0",
"ts-loader": "^3.5.0",
"typescript": "~3.9.7",
"webpack": "3.5.5"
},
"peerDependencies": {
"react": "^16.8.0 || ^17"
},
"jest": {
"testURL": "http://localhost",
"setupFiles": [
"raf/polyfill",
"<rootDir>/tests/setup.js"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(.*[.](test))[.](tsx?)$",
"moduleFileExtensions": [
"js",
"ts",
"tsx"
]
}
}