-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.9 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "snappy-lib",
"version": "1.0.24",
"description": "snappy library for snappy express with custom antd",
"type": "module",
"source": "src/index.js",
"exports": {
".": {
"import": "./dist/snappy.modern.js",
"require": "./dist/snappy.cjs",
"default": "./dist/snappy.modern.js"
},
"./dist/": "./dist/"
},
"main": "./dist/snappy.cjs",
"module": "./dist/snappy.module.js",
"unpkg": "./dist/snappy.umd.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cover": "npm test -- --coverage",
"start": "start-storybook -s ./static -p 8080",
"build:docs": "build-storybook -s ./static -o ./build",
"build-lib": "microbundle --generateTypes false --jsx React.createElement --compress false",
"prettier": "lint-staged",
"prepare": "husky install"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuluu2k/snappy-lib.git"
},
"keywords": [
"snappy-lib",
"react-snappy",
"snappy-express",
"snappy.vn",
"snappy",
"component",
"components",
"design",
"framework",
"frontend",
"react",
"react-component",
"ui"
],
"files": [
"dist"
],
"sideEffects": [
"dist/*"
],
"author": "vuluu2k <vuluu040320@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuluu2k/snappy-lib/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://vuluu2k.github.io/snappy-lib",
"devDependencies": {
"@ant-design/icons": "^4.7.0",
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@mdx-js/loader": "^2.1.2",
"@mdx-js/react": "^2.1.2",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-docs": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack4": "^6.5.12",
"@storybook/manager-webpack4": "^6.5.12",
"@storybook/mdx2-csf": "^0.0.3",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"babel-loader": "^8.2.5",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"microbundle": "^0.15.0",
"node-sass": "^7.0.1",
"prettier": "^2.7.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-icons": "^4.4.0",
"storybook-addon-sass-postcss": "^0.1.3"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"dependencies": {
"@babel/runtime": "^7.18.9",
"classnames": "^2.3.1",
"prop-types": "^15.8.1"
}
}