This repository has been archived by the owner on Mar 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.73 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
{
"name": "next-popular-website-starter",
"version": "0.1.0.0",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lighthouse-check": "lhci autorun",
"test:e2e": "playwright test",
"test:unit": "jest --config=jest.config.ts",
"test:unit-coverage": "jest --config=jest.config.ts --coverage",
"check-style": "eslint './{src,public}/**/*.{ts,tsx,js}'",
"check-types": "tsc --noEmit"
},
"dependencies": {
"@emotion/cache": "^11.7.1",
"@emotion/css": "^11.7.1",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"dotenv": "^10.0.0",
"next": "^12.1.4",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.4",
"@playwright/test": "^1.22.2",
"@types/jest": "^27.5.2",
"@types/node": "^16.7.4",
"@types/react": "^17.0.6",
"@types/react-stickynode": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"babel-jest": "^28.1.0",
"eslint": "^8.13.0",
"eslint-config-teacode": "^1.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.4.0",
"file-loader": "^6.2.0",
"jest": "^28.1.0",
"jest-css-modules": "^2.1.0",
"jest-junit": "^13.2.0",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.2.4"
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}