-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.53 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.53 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
{
"name": "@helsingborg-stad/modularity-json-render",
"version": "4.0.4",
"description": "Renders JSON api:s as a list etc.",
"main": "",
"scripts": {
"test": "jest --coverage --maxWorkers=50%",
"dev": "vite",
"build": "vite build",
"build:dev": "vite build --mode development",
"watch": "vite build --watch --mode development",
"format": "npx biome format ./source",
"format:write": "npx biome format ./source --write",
"lint": "npx biome lint ./source",
"lint:write": "npx biome lint ./source --write"
},
"repository": {
"type": "git",
"url": "https://github.com/helsingborg-stad/modularity-json-render.git"
},
"author": "Sebastian Thulin",
"license": "MIT",
"bugs": {
"url": "https://github.com/helsingborg-stad/modularity-json-render/issues"
},
"homepage": "https://github.com/helsingborg-stad/Municipio#readme",
"peerDependencies": {
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"browserslist": [
"> 1%",
"not dead"
],
"devDependencies": {
"@biomejs/biome": "2.3.5",
"@types/jest": "^30.0.0",
"@types/object-path": "^0.11.4",
"@types/uuid": "^10.0.0",
"es6-promise": "^4.2.8",
"immutability-helper": "^2.9.1",
"isomorphic-fetch": "^3.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jquery": "^3.6.0",
"mini-css-extract-plugin": "^2.5.3",
"object-path": "^0.11.8",
"postcss-loader": "^6.2.1",
"react": "^16.8.4",
"react-dnd": "^7.7.0",
"react-dnd-html5-backend": "^7.7.0",
"react-dom": "^16.8.4",
"react-hot-loader": "^4.8.0",
"react-onclickoutside": "^6.9.0",
"recursive-iterator": "2.0.3",
"sass-embedded": "^1.93.3",
"ts-jest": "^29.4.5",
"typescript": "^5.9.2",
"uuid": "^13.0.0",
"vite": "^7.1.2",
"vite-config-factory": "^1.0.1"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.(js|ts)$": "ts-jest"
},
"collectCoverageFrom": [
"source/**/*.js",
"source/**/*.ts"
],
"moduleFileExtensions": [
"js",
"ts"
],
"testMatch": [
"**/*.test.(js|ts)"
],
"transformIgnorePatterns": [
"node_modules/(?!(.*\\.mjs$))"
]
},
"browser": {
"child_process": false
}
}