-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "my-site",
"private": true,
"engines": {
"node": ">=18.18.2"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "jest --verbose",
"test:e2e": "playwright test",
"pretest:e2e": "cross-env NODE_ENV=test npm run build",
"lint": "eslint **/*.ts **/*.tsx"
},
"dependencies": {
"date-fns": "^2.30.0",
"next": "^14.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-popper": "^2.3.0",
"react-tsparticles": "^2.1.0",
"remark": "^15.0.1",
"remark-heading-id": "^1.0.1",
"remark-html": "^16.0.1",
"remark-prism": "^1.3.6",
"tsparticles-slim": "^2.3.4",
"typescript": "^4.2.4"
},
"devDependencies": {
"@playwright/test": "^1.23.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.7",
"@types/node": "^18.18.2",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@types/remark-prism": "^1.3.6",
"autoprefixer": "^10.4.16",
"cross-env": "^7.0.3",
"eslint": "^8.52.0",
"eslint-config-next": "^14.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.31",
"prettier": "^3.0.3"
}
}