-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.81 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.81 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
{
"name": "strapi-webtools",
"private": true,
"workspaces": [
"packages/*",
"packages/addons/*"
],
"scripts": {
"postinstall": "yarn playground:install",
"build": "turbo run build",
"develop": "FORCE_COLOR=1 turbo run watch:link",
"eslint": "turbo run eslint",
"eslint:fix": "turbo run eslint:fix",
"tscheck": "tsc --noEmit",
"release:publish": "turbo run build && changeset publish",
"release:prepare": "changeset version && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install",
"playground:install": "cd playground && yarn dlx yalc add --link strapi-plugin-webtools webtools-addon-sitemap && yarn install",
"playground:build": "cd playground && yarn build",
"playground:start": "cd playground && yarn start",
"playground:develop": "rm -rf playground/node_modules/.strapi/ && cd playground && yarn develop --watch-admin --bundler=vite",
"docs:start": "cd packages/docs/ && yarn start",
"docs:build": "cd packages/docs/ && yarn build",
"test:e2e": "cypress open",
"test:unit": "ENV_PATH=./playground/.env jest --verbose --runInBand --forceExit",
"test:integration": "ENV_PATH=./playground/.env jest --verbose --runInBand --forceExit --testMatch '**/healthcheck.test.js'"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/jest": "^29.4.0",
"@uncinc/eslint-config": "1.1.2",
"cypress": "^13.9.0",
"cypress-terminal-report": "^6.0.2",
"eslint-plugin-cypress": "^3.2.0",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-jest-dom": "^5.4.0",
"jest": "^29.4.1",
"jest-cli": "^29.2.2",
"supertest": "^7.1.3",
"ts-jest": "^29.0.3",
"turbo": "^2.6.1",
"yalc": "^1.0.0-pre.53"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "yarn@4.11.0"
}