generated from StanfordBDHG/NextJSTemplate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.83 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
{
"name": "nextjstemplate",
"version": "0.1.0",
"license": "MIT",
"description": "Stanford Biodesign Digital Health Next.js Template",
"keywords": [
"Stanford",
"Biodesign"
],
"repository": {
"type": "git",
"url": "https://github.com/StanfordBDHG/NextJSTemplate"
},
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"npm --prefix packages/example-package run watch\"",
"prebuild": "npm --prefix packages/example-package run build",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix & prettier --write .",
"lint:ci": "npm run prebuild && eslint --output-file eslint_report.json --format json .",
"pretest": "npm --prefix packages/example-package run build",
"test": "jest",
"docs": "typedoc",
"docs:ci": "typedoc --out ./out/docs --githubPages true"
},
"dependencies": {
"@stanfordbdhg/example-package": "file:./packages/example-package",
"next": "^14",
"prettier-plugin-tailwindcss": "^0.5.14",
"react": "^18",
"react-dom": "^18",
"sharp": "^0.33"
},
"devDependencies": {
"@testing-library/jest-dom": "^6",
"@testing-library/react": "^15",
"@total-typescript/ts-reset": "^0.5.1",
"@types/jest": "^29",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"autoprefixer": "^10",
"concurrently": "^8",
"eslint": "^8",
"eslint-config-next": "^14",
"eslint-config-prettier": "^9",
"eslint-plugin-import": "^2",
"eslint-plugin-prettier": "^5",
"jest": "^29",
"jest-environment-jsdom": "^29",
"postcss": "^8",
"prettier": "^3",
"tailwindcss": "^3",
"ts-jest": "^29",
"typedoc": "^0.25",
"typescript": "^5"
}
}