-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.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
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
{
"dependencies": {
"@fontsource/roboto": "^5.0.8",
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"description": "Project template for creating web applications with Typescript and NextJs",
"devDependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.3",
"@playwright/test": "^1.41.2",
"@stylistic/eslint-plugin": "^1.6.2",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.20",
"@types/react": "^18.2.59",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsonc": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jsonc-eslint-parser": "^2.4.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.2.5",
"react-test-renderer": "^18.2.0",
"sass": "^1.71.1",
"stijnklomp-linting-formatting-config": "^6.5.4",
"stylelint": "^16.2.1",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-scss": "^6.1.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.9",
"typescript": "^5.3.3"
},
"license": "MIT",
"name": "nextjs-template",
"private": false,
"scripts": {
"sass": "sass --watch --update --style=expanded assets/scss:assets/css",
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start -p 3000",
"test": "jest .",
"test:coverage": "npm run test -- --coverage",
"test:e2e": "playwright test",
"lint": "stylelint --allow-empty-input \"**/*.{css,scss}\" ; eslint . ",
"docs": "rimraf doc/code && typedoc",
"ci:test:coverage": "npm run test:coverage -- --coverageReporters=cobertura --passWithNoTests",
"prepare": "husky install"
},
"type": "module",
"version": "1.0.0"
}