-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.47 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
105
106
107
108
{
"name": "mermer-official",
"version": "0.8.9",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ignore-path .gitignore .",
"test": "jest --coverage",
"check-format": "prettier --ignore-path .gitignore --list-different \"**/*.+(js|ts|json)\"",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"validate": "npm run test && npm run check-format && npm run lint",
"production": "next start -p 80",
"migrate:dev": "npx dotenv -e .env.local -- prisma migrate dev",
"migrate:dev:preview": "npx dotenv -e .env.local -- prisma migrate dev --preview-feature",
"migrate:dev:fileOnly": "npx dotenv -e .env.local -- prisma migrate dev --create-only",
"db:push": "npx dotenv -e .env.local -- prisma db push",
"migrate:reset": "npx dotenv -e .env.local -- prisma migrate reset",
"db:seed": "npx dotenv -e .env.local -- prisma db seed",
"prisma:generate": "npx dotenv -e .env.local -- prisma generate",
"prisma:studio": "npx dotenv -e .env.local -- prisma studio",
"production:build": "npx prisma generate && npx prisma migrate deploy && next build",
"build:withSeed": "npx dotenv -e .env.local -- prisma db seed && next build",
"postinstall": "prisma generate",
"swarm": "next start -p 10001"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@cafeca/keccak": "^0.8.8",
"@cafeca/lunar": "^0.5.15",
"@google-cloud/storage": "^7.7.0",
"@headlessui/react": "^1.7.18",
"@mdxeditor/editor": "^2.5.1",
"@prisma/client": "^5.8.1",
"@radix-ui/colors": "^3.0.0",
"@types/js-cookie": "^3.0.6",
"@types/marked": "^5.0.1",
"cookies": "^0.9.1",
"dotenv-cli": "^7.3.0",
"formidable": "^3.5.1",
"gray-matter": "^4.0.3",
"i18next": "^23.2.3",
"js-cookie": "^3.0.5",
"lottie-react": "^2.4.0",
"marked": "^5.1.1",
"mime-types": "^2.1.35",
"next": "13.4.7",
"next-i18next": "^14.0.0",
"nodemailer": "^6.9.3",
"prettier": "^2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^13.0.1",
"react-icons": "^4.10.1",
"react-select": "^5.8.0",
"react-usestateref": "^1.0.8",
"rlp": "^3.0.0",
"sharp": "^0.33.2",
"thememirror": "^2.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/formidable": "^3.4.5",
"@types/jest": "^29.5.2",
"@types/mime-types": "^2.1.4",
"@types/node": "20.3.1",
"@types/react": "18.2.25",
"@types/react-dom": "18.2.6",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"eslint-config-next": "13.4.7",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tailwindcss": "^3.13.0",
"husky": "^4.3.8",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"postcss": "^8.4.24",
"prettier-plugin-tailwindcss": "^0.3.0",
"prisma": "^5.8.1",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "5.1.3"
},
"keywords": [
"MerMer",
"MerMer Official",
"blockchain",
"DeFi",
"Web3",
"FinTech"
],
"author": "CAFECA",
"license": "GPL-3.0",
"husky": {
"hooks": {
"pre-commit": "npm run test && lint-staged"
}
}
}