-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 KB
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": "delegated",
"version": "1.0.0",
"description": "App to manage work abroad delegations.",
"main": "index.js",
"jest": {
"testEnvironment": "node"
},
"scripts": {
"start": "node index.js",
"dev": "cross-env NODE_ENV=development nodemon index.js",
"build:ui": "rm -rf dist && cd frontend && npm run build && cp -r dist ../",
"deploy": "fly deploy",
"deploy:full": "npm run build:ui && npm run deploy",
"lint": "eslint .",
"logs": "fly logs",
"test": "cross-env NODE_ENV=test jest --verbose --runInBand --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kchn9/delegated.git"
},
"author": "kchn9",
"license": "MIT",
"bugs": {
"url": "https://github.com/kchn9/delegated/issues"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.6",
"mongoose-unique-validator": "^3.1.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.25.0",
"jest": "^29.2.1",
"nodemon": "^2.0.20",
"supertest": "^6.3.0"
}
}