forked from chapter-three/next-drupal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.84 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
{
"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 1.0.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 && yarn workspace next-drupal-query test",
"pretest": "yarn format:check && yarn lint",
"test:e2e": "turbo run test:e2e --parallel",
"test:e2e:ci": "turbo run test:e2e:ci --parallel"
},
"resolutions": {
"@types/react": "17.0.68",
"@types/react-dom": "17.0.21"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^17.8.0",
"@next/eslint-plugin-next": "^12.3.4",
"@testing-library/cypress": "^8.0.7",
"@types/jest": "^27.5.2",
"@types/node": "^17.0.45",
"@types/react": "^17.0.68",
"@types/react-dom": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cypress": "^9.7.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"faker": "^6.6.6",
"husky": "^8.0.3",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.5.1",
"lerna": "^8.0.1",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"start-server-and-test": "^1.15.5",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.1",
"tsup": "^7.3.0",
"turbo": "^1.10.15",
"typescript": "^5.2.2",
"uuid": "^9.0.1",
"yaml": "^2.3.3"
}
}