-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.9 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
{
"version": "0.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 && yalc push --publish",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"verify": "strapi-plugin verify",
"test:ts:front": "tsc -p admin/tsconfig.json",
"test:ts:back": "tsc -p server/tsconfig.json",
"test:jest": "ENV_PATH=./playground/.env jest --verbose --runInBand --forceExit",
"test:cypress": "cypress run",
"test:cypress:open": "cypress open",
"playground:install": "yarn playground:yalc-add-link && cd playground && yarn install",
"playground:yalc-add": "cd playground && yalc add strapi-plugin-boilerplate",
"playground:yalc-add-link": "cd playground && yalc add --link strapi-plugin-boilerplate",
"playground:build": "cd playground && yarn build",
"playground:develop": "cd playground && yarn develop",
"playground:start": "cd playground && yarn start"
},
"dependencies": {
"@strapi/design-system": "^2.0.0-rc.14",
"@strapi/icons": "^2.0.0-rc.14",
"react-intl": "^7.1.0"
},
"devDependencies": {
"@strapi/sdk-plugin": "^5.0.0",
"@strapi/strapi": "^5.0.0",
"@strapi/typescript-utils": "^5.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"cypress": "^13.9.0",
"cypress-terminal-report": "^6.0.2",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-router-dom": "^6.0.0",
"supertest": "^7.0.0",
"typescript": "^5.7.2"
},
"peerDependencies": {
"@strapi/strapi": "^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": "boilerplate",
"displayName": "Boilerplate",
"description": "A test-driven template for building reliable Strapi Plugins"
},
"name": "strapi-plugin-boilerplate",
"description": "A test-driven template for building reliable Strapi Plugins",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pluginpal/strapi-plugin-boilerplate.git"
},
"bugs": {
"url": "https://github.com/pluginpal/strapi-plugin-boilerplate/issues"
},
"homepage": "https://github.com/pluginpal/strapi-plugin-boilerplate#readme",
"author": "Boaz Poolman <[email protected]>"
}