-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 869 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
34
35
{
"name": "themostlaps_v2",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/joshkadis/themostlaps_v2.git"
},
"author": "Josh Kadis",
"engines": {
"node": "18.x"
},
"scripts": {
"start": "NODE_ENV=production node server.js",
"dev": "NODE_ENV=development node --inspect server.js",
"build": "next build",
"lint": "next lint",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"@next/font": "13.1.x",
"mongoose": "^6.8.2",
"next": "13.1.x",
"react": "18.2.x",
"react-dom": "18.2.x"
},
"devDependencies": {
"eslint": "8.30.x",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-next": "13.1.x",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-prettier": "^4.2.1"
}
}