-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.29 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.29 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
{
"name": "@strapi-community/plugin-todo",
"description": "Keep track of your content management with todo lists",
"version": "1.0.0",
"keywords": [],
"type": "commonjs",
"exports": {
"./package.json": "./package.json",
"./strapi-admin": {
"types": "./dist/admin/src/index.d.ts",
"source": "./admin/src/index.ts",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"types": "./dist/server/src/index.d.ts",
"source": "./server/src/index.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "strapi-plugin build",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"verify": "strapi-plugin verify",
"test:ts:front": "run -T tsc -p admin/tsconfig.json",
"test:ts:back": "run -T tsc -p server/tsconfig.json"
},
"dependencies": {
"@tanstack/react-query": "^5.90.16",
"react-intl": "^7.1.11"
},
"devDependencies": {
"@strapi/sdk-plugin": "^5.0.0",
"@strapi/strapi": "^5.24.1",
"@strapi/typescript-utils": "^5.24.1",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"prettier": "^3.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.1",
"styled-components": "^6.1.19",
"typescript": "^5.9.2"
},
"peerDependencies": {
"@strapi/admin": "^5.0.0",
"@strapi/design-system": "^2.0.0-rc",
"@strapi/icons": "^2.0.0-rc",
"@strapi/strapi": "^5.0.0",
"@strapi/utils": "^5.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"react-router-dom": "^6.0.0",
"styled-components": "^6.0.0"
},
"strapi": {
"kind": "plugin",
"name": "todo",
"displayName": "Todo",
"description": "Keep track of your content management with todo lists"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/strapi-community/plugin-todo.git"
},
"bugs": {
"url": "https://github.com/strapi-community/plugin-todo/issues"
},
"homepage": "https://github.com/strapi-community/plugin-todo#readme",
"author": "Boaz Poolman"
}