-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
104 lines (104 loc) · 3.2 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "announcement",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build-stats": "cross-env ANALYZE=true npm run build",
"export": "next export",
"build-prod": "run-s clean build export",
"clean": "rimraf .next out",
"lint": "next lint",
"check-types": "tsc --noEmit --pretty && tsc --project --noEmit --pretty",
"test": "jest",
"commit": "cz",
"e2e": "start-server-and-test dev http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test dev http://localhost:3000 cypress:headless"
},
"dependencies": {
"@material-tailwind/react": "^1.4.2",
"@netlify/classnames-template-literals": "^1.0.3",
"axios": "^1.7.7",
"cookies-next": "^2.1.2",
"decimal.js": "^10.4.3",
"jsonwebtoken": "^9.0.2",
"n3": "^1.22.3",
"next": "^13.5.7",
"next-seo": "^5.15.0",
"react": "^18.3.1",
"react-awesome-button": "^7.0.5",
"react-datetime-picker": "^5.6.0",
"react-dom": "^18.3.1",
"react-markdown": "^8.0.7",
"react-slide-fade-in": "^1.0.9",
"react-social-icons": "^5.15.0",
"react-toastify": "^9.1.3",
"react-tsparticles": "^2.12.2",
"tsparticles": "^2.12.0",
"typed.js": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@commitlint/cz-commitlint": "^17.8.1",
"@next/bundle-analyzer": "^13.5.7",
"@testing-library/cypress": "^8.0.7",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.63",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.20",
"commitizen": "^4.3.1",
"cross-env": "^7.0.3",
"cssnano": "^5.1.15",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "^13.5.7",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-cypress": "^2.15.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-testing-library": "^5.11.1",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"sass": "^1.80.6",
"start-server-and-test": "^1.15.4",
"tailwindcss": "^3.4.14",
"typescript": "^4.9.5"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"contributors": [
{
"name": "Ixartz",
"url": "https://github.com/ixartz"
},
{
"name": "Hocky Yudhiono",
"email": "[email protected]",
"url": "https://github.com/hockyy"
}
]
}