-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.18 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
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
{
"name": "@pallassystems/website-core",
"version": "0.7.19",
"description": "Components to enable the creation of Pallas Systems themed websites",
"homepage": "https://pallassystems.github.io/website-core/",
"license": "UNLICENSED",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"build/**/*",
"dist/**/*",
"src/**/*"
],
"private": false,
"dependencies": {
"bootstrap": "^5.3.0",
"react-bootstrap": ">=2.10.0",
"react-bootstrap-icons": ">=1.11.0",
"react-router":"^7.0.0",
"web-vitals": ">=4.2.0"
},
"peerDependencies": {
"bootstrap": "^5.3.0",
"react-bootstrap": ">=2.10.0",
"react-bootstrap-icons": ">=1.11.0",
"web-vitals": ">=4.2.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@eslint/compat": "^1.2.4",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/addon-webpack5-compiler-swc": "^2.0.0",
"@storybook/react-webpack5": "^8.4.7",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.5.14",
"@types/prismjs": "^1.26.4",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/react-router-bootstrap": "^0.26.6",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"storybook": "^8.4.7",
"stylelint": "^16.12.0",
"ts-jest": "^29.2.5"
},
"scripts": {
"clean": "rm -rf ./dist ./coverage eslint_report.json stylelint_report.json junit.xml",
"css-concat": "cat ./src/css/base.css >> ./dist/website.css && cat ./src/css/bootstrap.solar.css >> ./dist/website.css && cat ./src/css/bootstrap.pallas.css >> ./dist/website.css",
"build": "npm run clean && tsc && npm run css-concat && npm run build:storybook",
"test": "jest",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build",
"analyse": "source-map-explorer 'build/static/js/*.js'",
"eslint": "eslint --config eslint.config.mjs --output-file eslint_report.json --format json src/",
"stylelint": "stylelint \"./src/**/*.css\" --formatter json --output-file stylelint_report.json",
"lint": "npm run eslint && npm run stylelint",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "https://github.com/PallasSystems/website-core.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
}
},
"./website.css": {
"import": "./dist/website.css",
"require": "./dist/website.css"
}
}
}