forked from chapter-three/next-drupal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.43 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
{
"name": "next-drupal-monorepo",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"examples/*",
"starters/*",
"modules/*",
"drupal",
"www"
],
"scripts": {
"test": "jest",
"dev": "turbo run dev --parallel",
"dev:starter": "lerna run --parallel --scope drupal --scope basic-starter dev",
"prepare": "lerna run prepare",
"watch": "lerna run watch",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx .",
"phpcs": "./drupal/vendor/bin/phpcs -s -n --colors --standard=modules/next/phpcs.xml.dist modules/next",
"test:next": "./drupal/vendor/bin/phpunit -c ./drupal/web modules/next",
"sync:modules": "./scripts/sync-modules.sh \"modules/*\"",
"sync:examples": "./scripts/sync-examples.sh \"examples/example-*\"",
"sync:starters": "./scripts/sync-starters.sh \"starters/*\"",
"seed": "NUM_NODES=200 node ./scripts/seed",
"cy:open": "turbo run cy:open --parallel",
"test:e2e": "turbo run test:e2e --parallel",
"test:e2e:ci": "turbo run test:e2e:ci --parallel"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@babel/core": "^7.9.6",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@next/eslint-plugin-next": "^12.0.9",
"@testing-library/cypress": "^8.0.2",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"cypress": "^9.1.1",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"faker": "^6.6.6",
"husky": "^8.0.2",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"microbundle": "^0.14.2",
"prettier": "^2.8.0",
"pretty-quick": "^3.1.3",
"start-server-and-test": "^1.14.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"turbo": "^1.1.1",
"typescript": "^4.5.5",
"uuid": "^8.3.2",
"yaml": "^1.10.2"
},
"dependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0"
},
"engines": {
"node": ">=16.19.0"
}
}