-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.27 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.27 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@nciocpl/react-components",
"version": "0.1.0",
"description": "Shared React component library for NCI applications",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"sideEffects": [
"**/*.css",
"**/*.scss"
],
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./core": {
"import": "./dist/esm/components/core/index.js",
"require": "./dist/cjs/components/core/index.js",
"types": "./dist/types/components/core/index.d.ts"
},
"./ncids": {
"import": "./dist/esm/components/ncids/index.js",
"require": "./dist/cjs/components/ncids/index.js",
"types": "./dist/types/components/ncids/index.d.ts"
},
"./styles": "./dist/styles/index.css"
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "storybook dev -p 6006",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"format": "prettier --write 'src/**/*.{ts,tsx,scss,css,md}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx,scss,css,md}'",
"storybook:build": "storybook build",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"prepublishOnly": "pnpm build"
},
"repository": {
"type": "git",
"url": "https://github.com/NCIOCPL/react-app-shared.git"
},
"keywords": [
"react",
"components",
"nci",
"ncids",
"design-system"
],
"author": "NCI OCPL",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NCIOCPL/react-app-shared/issues"
},
"homepage": "https://github.com/NCIOCPL/react-app-shared#readme",
"peerDependencies": {
"react": ">=16.14.0",
"react-dom": ">=16.14.0"
},
"peerDependenciesMeta": {
"@nciocpl/ncids-css": {
"optional": true
}
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@eslint/js": "^9.39.2",
"@nciocpl/eslint-config-react": "^1.1.0-alpha.1",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.0",
"@storybook/addon-a11y": "^8.4.0",
"@storybook/addon-essentials": "^8.4.0",
"@storybook/react": "^8.4.0",
"@storybook/react-vite": "^8.4.0",
"@testing-library/jest-dom": "^6.9.0",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jsdom": "^25.0.0",
"lint-staged": "^16.2.7",
"postcss-modules": "^6.0.0",
"prettier": "^3.4.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"rollup": "^4.28.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-scss": "^4.0.0",
"sass": "^1.82.0",
"storybook": "^8.4.0",
"@vitest/coverage-v8": "^3.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.54.0",
"vitest": "^3.0.0",
"vitest-axe": "^0.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}