-
Notifications
You must be signed in to change notification settings - Fork 178
/
package.json
73 lines (73 loc) · 2.71 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
{
"name": "next-drupal-monorepo",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"examples/*",
"starters/*",
"modules/*",
"drupal",
"www"
],
"scripts": {
"dev": "turbo run dev --parallel",
"dev:starter": "lerna run --parallel --scope drupal --scope basic-starter dev",
"prepare": "lerna run prepare && husky install",
"watch": "lerna run watch",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"phpcs": "./drupal/vendor/bin/phpcs -p -s --colors --standard=modules/next/phpcs.xml modules/next",
"test:next": "SIMPLETEST_DB=sqlite://localhost/:memory: ./drupal/vendor/bin/phpunit -c ./drupal/web/core modules/next",
"sync:modules": "./scripts/sync-repo.sh 2.x [email protected]:project/ \"modules/*\"",
"sync:examples": "./scripts/sync-repo.sh main [email protected]:chapter-three/next- \"examples/example-*\"",
"sync:starters": "./scripts/sync-repo.sh canary [email protected]:chapter-three/next-drupal- \"starters/*\"",
"sync:starters:release": "./scripts/sync-repo.sh canary,main [email protected]:chapter-three/next-drupal- \"starters/*\"",
"seed": "NUM_NODES=200 node ./scripts/seed",
"cy:open": "turbo run cy:open --parallel",
"test": "yarn workspace next-drupal test",
"pretest": "yarn format:check && yarn lint",
"test:e2e": "turbo run test:e2e --parallel",
"test:e2e:ci": "turbo run test:e2e:ci --parallel"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@next/eslint-plugin-next": "^14.2.2",
"@testing-library/cypress": "^8.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"cypress": "^9.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.15.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"faker": "^6.6.6",
"husky": "^9.0.11",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.7.0",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"start-server-and-test": "^2.0.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"turbo": "^1.13.2",
"typescript": "^5.4.5",
"uuid": "^9.0.1",
"yaml": "^2.4.1"
}
}