-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
91 lines (91 loc) · 2.82 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
{
"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",
"lint": "eslint . --ext ts,tsx",
"preview": "vite preview",
"start": "npm run generate-version && vite",
"tdd": "vitest",
"test": "npm run generate-version && vitest --watch=false",
"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": ">=8",
"node": ">=16"
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.1",
"@rjsf/bootstrap-4": "^5.21.1",
"@rjsf/core": "^5.21.1",
"@rjsf/utils": "^5.21.1",
"@rjsf/validator-ajv8": "^5.21.1",
"@uiw/codemirror-extensions-langs": "^4.21.24",
"@uiw/react-codemirror": "^4.21.24",
"bootstrap": "^4.6.2",
"bootstrap-icons": "^1.11.3",
"diff": "^7.0.0",
"filesize": "^10.1.0",
"history": "^4.10.1",
"kinto": "^15.0.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-bootstrap": "^1.6.7",
"react-bootstrap-icons": "^1.11.3",
"react-bs-notifier": "^7.0.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"redux-first-history": "^5.2.0",
"redux-saga": "^1.3.0",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/history": "^5.0.0",
"@types/lodash": "^4.14.202",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^5.0.0",
"jsdom": "^25.0.1",
"node-fetch": "^3.3.2",
"prettier": "^3.2.5",
"toctoc": "^0.4.0",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vitest": "^2.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kinto/kinto-admin.git"
},
"keywords": [
"kinto",
"react",
"admin",
"json-schema"
],
"author": "Nicolas Perriault <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kinto/kinto-admin/issues"
},
"homepage": "https://github.com/kinto/kinto-admin#readme"
}