-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·89 lines (89 loc) · 3.17 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
{
"name": "@xpadev-net/designsystem-icons",
"version": "0.0.6",
"description": "Icon materials provided by the Digital Agency converted into components for React",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx rimraf dist&&npm run build:ts&&npm run build:dts",
"build:ts": "rollup -c rollup.config.mjs",
"build:dts": "npx copyfiles -u 2 src/@types/*.d.ts dist/dts/@types/&&node ./util/resolve-path-alias.js&&rollup -c rollup.config.dts.mjs",
"watch": "rollup -c rollup.config.mjs -w",
"typedoc": "typedoc --entryPointStrategy Expand --out ./docs/type/ ./src/",
"prepublishOnly": "npm run build",
"check-types": "npx tsc --noEmit --jsx react",
"eslint": "eslint src/**/*.ts",
"eslint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.{tsx,ts,js,json,css,scss}\"",
"lint": "npm run eslint&&npm run check-types",
"lint:fix": "npm run format&&npm run eslint:fix&&npm run check-types",
"prepare": "husky install",
"test": "docker-compose run --rm pw",
"test-server": "lite-server",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xpadev-net/designsystem-icons.git"
},
"keywords": [],
"author": "xpadev(xpadev.net)",
"bugs": {
"url": "https://github.com/xpadev-net/designsystem-icons/issues"
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"homepage": "https://xpadev-net.github.io/designsystem-icons/",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.1.2",
"@storybook/addon-essentials": "^7.0.24",
"@storybook/addon-interactions": "^7.0.24",
"@storybook/addon-links": "^7.0.24",
"@storybook/blocks": "^7.0.24",
"@storybook/react": "^7.0.24",
"@storybook/react-vite": "^7.0.24",
"@storybook/testing-library": "0.0.14-next.2",
"@types/node": "^20.3.2",
"@types/react": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"concurrently": "^8.2.0",
"copyfiles": "^2.4.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsdoc": "^44.2.7",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.12",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"lite-server": "^2.6.1",
"prettier": "2.8.8",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^3.25.3",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript-paths": "^1.4.0",
"storybook": "^7.0.24",
"tslib": "^2.6.0",
"typedoc": "^0.24.8",
"typedoc-plugin-missing-exports": "^1.0.0",
"typescript": "^5.1.6",
"vite": "^4.3.9"
}
}