-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.94 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.94 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
{
"name": "kinto-admin",
"version": "0.0.0-dev",
"description": "Kinto Web Administration Console in React.js",
"type": "module",
"scripts": {
"build": "npm run generate-version && vite build",
"build:readme": "toctoc README.md -w",
"build:kinto-single": "ASSET_PATH=/v1/admin KINTO_ADMIN_SINGLE_SERVER=1 npm run build",
"cs-check": "prettier -l \"{src,test,bin}/**/*.{js,jsx,ts,tsx}\"",
"cs-format": "prettier \"{src,test,bin}/**/*.{js,jsx,ts,tsx}\" --write",
"generate-version": "node ./bin/generate-version.js",
"format": "npm run cs-format",
"eslint": "eslint . --ext ts,tsx",
"lint": "npm run cs-check && npm run eslint && npm run ts-check",
"ts-check": "npx tsc --project tsconfig.src.json",
"preview": "vite preview",
"start": "npm run generate-version && vite",
"tdd": "vitest",
"test": "npm run generate-version && vitest --watch=false",
"test:coverage": "npm run generate-version && vitest --watch=false --coverage",
"test:ci": "npm run test",
"test-all": "npm run lint && npm run test",
"test-all:ci": "npm run lint && npm run test:ci"
},
"engines": {
"npm": ">=10",
"node": ">=22"
},
"dependencies": {
"@codemirror/lang-jinja": "^6.0.0",
"@rjsf/core": "^6.1.2",
"@rjsf/react-bootstrap": "^6.1.2",
"@rjsf/utils": "^6.1.2",
"@rjsf/validator-ajv8": "^6.1.2",
"@uiw/codemirror-extensions-langs": "^4.25.3",
"@uiw/react-codemirror": "^4.25.3",
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.11.3",
"diff": "^8.0.2",
"filesize": "^11.0.1",
"kinto": "^17.1.1",
"lodash": "^4.17.21",
"react": "^19.1.1",
"react-bootstrap": "^2.10.10",
"react-bootstrap-icons": "^1.11.3",
"react-dom": "^19.1.1",
"react-router": "^7.6.0",
"timeago.js": "^4.0.2",
"vite-tsconfig-paths": "^6.0.1"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.0.0",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/lodash": "^4.14.202",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.0.13",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.1.0",
"jsdom": "^29.0.0",
"node-fetch": "^3.3.2",
"prettier": "^3.2.5",
"toctoc": "^0.4.0",
"typescript": "^5.3.3",
"vite": "^8.0.0",
"vitest": "^4.0.13"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kinto/kinto-admin.git"
},
"keywords": [
"kinto",
"react",
"admin",
"json-schema"
],
"author": "Nicolas Perriault <nperriault@mozilla.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kinto/kinto-admin/issues"
},
"homepage": "https://github.com/kinto/kinto-admin#readme"
}