-
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.1 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.1 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": "robosystems-app",
"version": "1.1.43",
"type": "module",
"private": true,
"license": "Apache-2.0",
"engines": {
"node": ">=22.0.0"
},
"bin": {
"bootstrap": "./bin/bootstrap.sh",
"create-feature": "./bin/create-feature.sh",
"create-release": "./bin/create-release.sh",
"create-pr": "./bin/create-pr.sh",
"sync-subtree": "./bin/sync-subtree.sh",
"gha-setup": "./bin/gha-setup.sh"
},
"scripts": {
"start": "next start",
"dev": "PORT=3000 next dev",
"dev:webpack": "PORT=3000 next dev --webpack",
"build": "next build",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run --silent",
"test:all": "npm run test && npm run format && npm run lint:fix && npm run typecheck && npm run cf-lint",
"cf-lint": "uvx cfn-lint",
"test:watch": "vitest watch --silent",
"test:coverage": "vitest run --coverage --silent",
"core:pull": "./bin/sync-subtree.sh pull",
"core:push": "./bin/sync-subtree.sh push",
"core:add": "./bin/sync-subtree.sh add",
"deploy:staging": "./bin/deploy.sh staging",
"deploy:prod": "./bin/deploy.sh prod",
"feature:create": "./bin/create-feature.sh",
"release:create": "./bin/create-release.sh",
"pr:create": "./bin/create-pr.sh",
"setup:gha": "./bin/gha-setup.sh",
"setup:bootstrap": "./bin/bootstrap.sh"
},
"dependencies": {
"@aws-sdk/client-sns": "^3.1000.0",
"@monaco-editor/react": "^4.7.0",
"@robosystems/client": "0.3.13",
"date-fns": "^4.1.0",
"flowbite": "^3.1",
"flowbite-react": "^0.12.5",
"gray-matter": "^4.0.3",
"lru-cache": "^11.2.6",
"next": "^16.1.6",
"react": "^19",
"react-dom": "^19",
"react-icons": "^4",
"react-json-view-lite": "^2.5.0",
"react-markdown": "^10",
"reading-time": "^1.5.0",
"recharts": "^3.1.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-html": "^16.0.1",
"tailwind-merge": "^3"
},
"overrides": {
"dompurify": "^3.3.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^16.2.2",
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/typography": "^0.5",
"@testing-library/jest-dom": "^6",
"@testing-library/react": "^16",
"@testing-library/user-event": "^14",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3",
"eslint": "^9.39.2",
"eslint-config-next": "^16.2.2",
"eslint-config-prettier": "^10",
"eslint-plugin-jsx-a11y": "^6",
"eslint-plugin-prettier": "^5",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^5",
"globals": "^17.2.0",
"jsdom": "^29.0.1",
"postcss": "^8",
"prettier": "^3",
"prettier-plugin-organize-imports": "^4",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.11",
"ts-node": "^10",
"typescript": "^5.7.2",
"vitest": "^3"
}
}