-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.5 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.5 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
{
"version": "1.0.0-alpha.0",
"author": "Frameless",
"description": "React component library for the Frameless repository, based on the NL Design System architecture",
"license": "EUPL-1.2",
"name": "@frameless/components-react",
"keywords": [
"nl-design-system"
],
"private": true,
"publishConfig": {
"access": "restricted",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git+ssh",
"url": "git@github.com:frameless/website.git"
},
"scripts": {
"build": "npm-run-all clean build:**",
"build:components": "vite build",
"clean": "rimraf dist/ pages/",
"lint": "tsc --project ./tsconfig.json --noEmit && tsc --noEmit --project ./tsconfig.test.json",
"test": "mkdir -p pages && NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"watch:test": "NODE_OPTIONS=--experimental-vm-modules jest --verbose --watch"
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"dependencies": {
"clsx": "2.1.1"
},
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/plugin-transform-runtime": "7.24.7",
"@babel/preset-env": "7.24.7",
"@babel/preset-react": "7.24.7",
"@babel/preset-typescript": "7.24.7",
"@babel/runtime": "7.24.7",
"@frameless/components-css": "workspace:*",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-node-resolve": "15.2.3",
"@testing-library/dom": "10.1.0",
"@testing-library/jest-dom": "6.4.6",
"@testing-library/react": "15.0.7",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.12",
"@types/react": "18.3.3",
"@types/testing-library__jest-dom": "5.14.9",
"@utrecht/component-library-react": "3.1.0",
"@vitejs/plugin-react": "4.3.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"next": "14.2.4",
"npm-run-all": "4.1.5",
"postcss": "8.4.38",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "5.0.7",
"rollup": "4.18.0",
"rollup-plugin-filesize": "10.0.0",
"rollup-plugin-node-externals": "7.1.2",
"rollup-plugin-node-polyfills": "0.2.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-typescript2": "0.36.0",
"sass": "1.77.5",
"tslib": "2.6.3",
"typescript": "5.4.5",
"vite": "5.4.2",
"vite-plugin-runtime-config": "1.0.2"
},
"peerDependencies": {
"react": "18",
"react-dom": "18"
}
}