-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.59 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.59 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
{
"name": "user-tutorial",
"version": "1.0.3",
"description": "React package about user dashboard",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/khacywin/w-guide.git"
},
"keywords": [
"first time",
"react",
"user dashboard",
"tutorial user"
],
"author": "khacywin",
"license": "ISC",
"bugs": {
"url": "https://github.com/khacywin/w-guide/issues"
},
"homepage": "https://github.com/khacywin/w-guide#readme",
"devDependencies": {
"@babel/core": "^7.13.14",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@storybook/addon-actions": "^6.2.2",
"@storybook/addon-links": "^5.3.21",
"@storybook/addons": "^5.3.21",
"@storybook/react": "^6.2.2",
"@svgr/rollup": "^5.5.0",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"babel-loader": "^8.2.2",
"node-sass": "^4.14.1",
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"rollup": "^2.44.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-url": "^3.0.1",
"ts-loader": "^8.1.0",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"postcss": "^8.3.6"
}
}