-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.41 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.41 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
{
"name": "strapi-plugin-uno",
"version": "2.0.0",
"private": true,
"description": "This is the description of the plugin.",
"homepage": "https://github.com/timelessco/strapi-ts-monorepo",
"bugs": {
"url": "https://github.com/timelessco/strapi-ts-monorepo/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timelessco/strapi-ts-monorepo.git",
"directory": "apps/cms-strapi/src/plugins/uno"
},
"license": "MIT",
"author": {
"name": "Timeless",
"email": "hello@timeless.co",
"url": "https://timeless.co/"
},
"maintainers": [
{
"name": "Timeless // Navin Moorthy",
"email": "navin@timeless.co",
"url": "https://timeless.co"
}
],
"type": "module",
"scripts": {
"build": "yarn clean && tsup-node",
"clean": "del-cli dist",
"dev": "tsc -w --project tsconfig.build.json",
"format:eslint": "eslint --max-warnings 0 --ignore-path ../../../../../.gitignore --cache --report-unused-disable-directives --color --fix .",
"lint:eslint": "eslint --max-warnings 0 --ignore-path ../../../../../.gitignore --cache --report-unused-disable-directives --color .",
"lint:types": "tsc --noEmit",
"test": "echo \"no test specified\" && exit 0"
},
"dependencies": {
"@strapi/design-system": "1.8.2",
"@strapi/helper-plugin": "4.11.7",
"@strapi/icons": "1.8.2",
"@strapi/strapi": "4.11.7"
},
"devDependencies": {
"@strapi/database": "4.11.7",
"@strapi/typescript-utils": "4.11.7",
"@types/react": "18.2.16",
"@types/react-dom": "18.2.7",
"@types/react-router-dom": "5.3.3",
"@types/styled-components": "5.1.26",
"@typescript-eslint/experimental-utils": "5.62.0",
"del-cli": "5.0.0",
"eslint": "8.45.0",
"eslint-config-canonical": "41.1.3",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jsonc": "2.9.0",
"jsonc-eslint-parser": "2.3.0",
"lint-staged": "15.4.3",
"node-fetch": "3.3.2",
"npm-package-json-lint": "7.0.0",
"npm-package-json-lint-config-default": "6.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "5.3.4",
"styled-components": "5.3.11",
"tsup": "7.1.0",
"typescript": "5.1.6"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"react-router-dom": "^5.3.4",
"styled-components": "^5.3.6"
},
"engines": {
"node": ">=16.16.0",
"npm": ">=6.0.0"
},
"strapi": {
"displayName": "Uno",
"name": "uno",
"description": "Description of uno plugin",
"kind": "plugin"
}
}