-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.32 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
{
"name": "notes-backend",
"version": "1.0.0",
"description": "Simple Web Server",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node index.js",
"dev": "cross-env NODE_ENV=development nodemon index.js",
"test": "cross-env NODE_ENV=test node --test",
"build:ui": "rm -rf dist && cd /home/julien/GitHub/fso-notes-frontend && npm run build && cp -r dist /home/julien/GitHub/fso-notes-backend",
"deploy:full": "npm run build:ui && git add . && git commit -m uibuild && git push",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Daembius/fso-notes-backend.git"
},
"author": "Julien Mayard",
"license": "MIT",
"bugs": {
"url": "https://github.com/Daembius/fso-notes-backend/issues"
},
"homepage": "https://github.com/Daembius/fso-notes-backend#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.9.0",
"mongoose": "^8.7.1"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin-js": "^2.10.1",
"cross-env": "^7.0.3",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"nodemon": "^3.1.4",
"supertest": "^7.0.0"
}
}