-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
46
{
"name": "fso-part3",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test jest --verbose --runInBand --forceExit",
"start": "NODE_ENV=production node index.js",
"build:ui": "rm -rf build && cd ./frontend/ && npm run build && cp -r build ../build",
"dev": "NODE_ENV=development nodemon index.js",
"deploy": "flyctl deploy",
"deploy:full": "npm run build:ui && git add . && git commit -m uibuild && npm run deploy",
"logs": "flyctl logs",
"lint": "eslint ."
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sirartemis/FSO-part3.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sirartemis/FSO-part3/issues"
},
"homepage": "https://github.com/sirartemis/FSO-part3#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.4",
"morgan": "^1.10.0"
},
"devDependencies": {
"eslint": "^8.26.0",
"jest": "^29.2.2",
"nodemon": "^2.0.19",
"supertest": "^6.3.1"
}
}