-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 970 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 970 Bytes
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
{
"name": "devncode-2.0",
"version": "0.1.0",
"private": true,
"description": "DevnCode - Helping developers discover events, connect with peers, and grow through real-world learning and collaboration",
"author": "DevnCode Team",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "npx serve@latest out",
"preview": "npm run build && npm run start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"generate-images": "node scripts/generate-images.js",
"generate-email-icons": "node scripts/generate-email-icons.js"
},
"dependencies": {
"mongodb": "^7.0.0",
"next": "16.1.1",
"prop-types": "^15.8.1",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"autoprefixer": "^10.4.23",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"postcss": "^8.5.6",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.19"
}
}