-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 938 Bytes
/
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
{
"name": "next-app-router-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "tsc && next lint",
"init": "run-script-os",
"init:nix": "node --env-file='.env' \"app/_utils/mongodb/dbInit.mjs\"",
"init:windows": "node --env-file=\".\\.env\" \".\\app\\_utils\\mongodb\\dbInit.mjs\""
},
"dependencies": {
"mongodb": "^6.3.0",
"next": "14.0.4",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.4",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-lit-a11y": "^1.1.0-next.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-unicorn": "^50.0.1",
"prettier": "3.0.3",
"run-script-os": "^1.1.6"
}
}