-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "sakura-tarot",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"json-server": "json-server --watch src/data/data.json --port 8000",
"cypress:open": "cypress open"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.1",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"axios": "^1.6.5",
"json-server": "^1.0.0-alpha.21",
"next": "^14.1.0",
"prop-types": "^15.8.1",
"react": "^18",
"react-accessible-accordion": "^5.0.0",
"react-confirm-toast": "^1.0.7",
"react-dom": "^18",
"react-icons": "^5.0.1",
"react-responsive": "^9.0.2",
"react-toastify": "^10.0.4",
"uuid": "^9.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"autoprefixer": "^10.0.1",
"cypress": "^13.6.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"tailwindcss": "^3.3.0"
}
}