-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.63 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.63 KB
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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "ANALYZE=true next build && node ./scripts/build-paw/index.mjs",
"build:export": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"api:build": "node swagger-config.mjs",
"webfonts:build": "node ./scripts/webfonts/index.mjs",
"test": "jest",
"test:watch": "jest --watch",
"postinstall": "yarn api:build && webfonts:build && husky init",
"build:worker": "tsc -p tsconfig.worker.json",
"watch:worker": "tsc -p tsconfig.worker.json --watch",
"prepare": "husky"
},
"dependencies": {
"@capacitor/cli": "^6.2.0",
"@capacitor/core": "^6.2.0",
"@capacitor/ios": "^6.2.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@vusion/webfonts-generator": "^0.8.0",
"clsx": "^2.1.1",
"ejs": "^3.1.10",
"framer-motion": "^11.18.1",
"idb": "^8.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jotai": "^2.11.0",
"next": "^15.1.5",
"next-intl": "^3.26.3",
"next-pwa": "^5.6.0",
"nprogress": "^0.2.0",
"ramda": "^0.30.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-photo-view": "^1.2.7",
"sass": "^1.83.1",
"simplebar-react": "^3.3.0",
"swiper": "^11.2.1",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@next/bundle-analyzer": "^15.1.4",
"@types/ejs": "^3",
"@types/jest": "^29.5.14",
"@types/next-pwa": "^5",
"@types/node": "^20",
"@types/nprogress": "^0",
"@types/ramda": "^0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sharedworker": "^0.0.147",
"@types/vusion__webfonts-generator": "^0",
"critters": "^0.0.25",
"eslint": "^9",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"nacos": "^2.6.0",
"postcss": "^8",
"prettier": "^3.4.2",
"swagger-typescript-api": "^13.0.23",
"tailwindcss": "^3.4.1",
"tailwindcss-safe-area": "^0.6.0",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss}": "prettier --write"
},
"packageManager": "yarn@4.6.0+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728"
}