-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "next-acms-monorepo",
"repository": "https://github.com/acquia/next-acms.git",
"license": "MIT",
"private": true,
"workspaces": [
"starters/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx .",
"prettier": "prettier --check --ignore-path .gitignore .",
"prettier:fix": "prettier --write --ignore-path .gitignore .",
"test:jest": "jest",
"test:e2e": "cypress run"
},
"devDependencies": {
"@next/eslint-plugin-next": "13.2.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.11.11",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"cypress": "^12.0.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "2.8.8",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"turbo": "^1.6.3"
},
"dependencies": {
"next": "^13.4.8",
"next-drupal": "^1.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.1.3"
}
}