-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.65 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
{
"name": "skeleton-screen-react",
"version": "0.0.2",
"description": "a powerful and lightweight skeleton screen component based on React.",
"keywords": [
"skeleton-screen",
"skeleton",
"react",
"css"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rimraf ./dist && npm run build:es && npm run build:cjs && npm run cp:style",
"build:es": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"cp:style": "cpr ./src/components/skeleton.css ./dist/styles/skeleton.css",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"author": "SilentTiger <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/SilentTiger/skeleton-screen-react"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.0",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack4": "^6.5.16",
"@storybook/manager-webpack4": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@types/node": "^18.14.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"babel-loader": "^8.3.0",
"cpr": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^4.1.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {}
}