-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.37 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
90
91
92
93
94
95
{
"name": "@balena/autoui",
"version": "6.1.0",
"description": "",
"main": "./dist/index.js",
"sideEffects": false,
"files": [
"dist/",
"docs/",
"README.md"
],
"dependencies": {
"@balena/ui-shared-components": "^9.4.2",
"@rjsf/validator-ajv8": "^5.21.1",
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"ajv-keywords": "^5.1.0",
"date-fns": "^3.6.0",
"json-e": "^4.4.3",
"json-schema": "^0.4.0",
"lodash": "^4.17.21",
"qs": "^6.10.3",
"react-router": "^5.3.3",
"react-router-dom": "^5.3.3",
"rendition": "^35.2.0",
"skhema": "^5.3.4",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@balena/lint": "^6.2.0",
"@types/history": "^4.7.11",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.14.185",
"@types/node": "^14.18.29",
"@types/qs": "^6.9.7",
"@types/react": "^17.0.50",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"jest": "^29.7.0",
"jsdom": "^24.1.1",
"prettier": "^2.4.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "^5.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.2.4",
"typescript": "^4.8.3"
},
"scripts": {
"start": "react-scripts start",
"build": "rimraf dist && tsc",
"test": "jest",
"eject": "react-scripts eject",
"lint:fix": "balena-lint --typescript --fix src",
"lint": "balena-lint --typescript src",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balena-io-modules/autoui.git"
},
"keywords": [],
"author": "Balena",
"license": "ISC",
"bugs": {
"url": "https://github.com/balena-io-modules/autoui/issues"
},
"homepage": "https://github.com/balena-io-modules/autoui#readme",
"jest": {
"preset": "ts-jest",
"transform": {
"^.+\\.[jt]sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(entity-decode|mermaid|monaco-editor|react-monaco-editor|d3|internmap|delaunator|robust-predicates))"
],
"testRegex": "src/.*spec.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverage": true,
"setupFiles": [
"<rootDir>scripts/setupTests.ts"
]
},
"versionist": {
"publishedAt": "2024-11-04T15:27:01.628Z"
}
}