-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"name": "ndoebackendfso",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build:ui": "rm -rf build && cd ../part2-notes && yarn build && cp -r build ../nodebackendfso",
"deploy": "fly deploy",
"deploy:full": "yarn build:ui && yarn deploy",
"logs:prod": "fly logs",
"lint": "eslint .",
"start": "cross-emv NODE_ENV=production node index.js",
"dev": "cross-env NODE_ENV=development nodemon index.js",
"test": "cross-env NODE_ENV=test jest --verbose --runInBand"
},
"author": "Alexander Baikalov",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "6",
"mongoose-unique-validator": "^3.1.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3"
},
"jest": {
"testEnvironment": "node",
"globalTeardown": "./tests/teardown.js"
}
}