-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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
{
"name": "pefs",
"version": "0.0.1",
"private": true,
"main": "./backend/server.js",
"scripts": {
"start": "node ./backend/server.js",
"server": "nodemon ./backend/server.js",
"client": "npm start --prefix frontend",
"build": "npm install --production=false --prefix frontend && npm run build --prefix frontend && npm prune --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,astro,cjs,mjs,json}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,md,mdx,astro,cjs,mjs,json}\"",
"lint": "eslint ."
},
"author": "FitzHawke",
"license": "MIT",
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"description": "",
"dependencies": {
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"theme-change": "^2.5.0"
},
"devDependencies": {
"concurrently": "^8.2.2",
"eslint": "^8.53.0",
"eslint-plugin-react": "^7.33.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6"
}
}