-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.95 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": "@x-poppy/web-library-template",
"version": "1.0.0-rc.1",
"description": "",
"main": "./dist/main.js",
"scripts": {
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 'src/**/*.{css,png,d.ts}' 'dist/'",
"lint": "eslint src",
"test": "echo ''",
"build": "npm run clean && tsc && npm run copy-files",
"start": "start-storybook -p 6006 -s public",
"build:storybook": "build-storybook -s public -o docs",
"deploy": "npm run build && npm publish --access public",
"pack": "npm run build && npm pack"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ling-shan/poppy-web-library-template.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ling-shan/poppy-web-library-template/issues"
},
"homepage": "https://github.com/ling-shan/poppy-web-library-template#readme",
"devDependencies": {
"@babel/core": "^7.21.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@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-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/node-logger": "^6.5.16",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"antd": "^5.2.2",
"babel-loader": "^8.3.0",
"babel-plugin-named-exports-order": "^0.0.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"prop-types": "^15.8.1",
"react-app-rewired": "^2.2.1",
"rimraf": "^4.4.0",
"typescript": "^4.9.5",
"webpack": "^5.76.1"
},
"dependencies": {
"lucide-react": "^0.302.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.5",
"react-scripts": "^5.0.1",
"remark-gfm": "^3.0.1",
"tslib": "^2.5.0"
},
"engineStrict": false,
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"!dist/app-env.d.ts",
"!dist/**/*.{test,stories}.{js,d.ts}"
],
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
},
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"exports": {
".": "./dist/main.js",
"./editor": "./dist/mainEditor.js",
"./render": "./dist/mainRender.js"
}
}