-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·55 lines (55 loc) · 1.65 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
47
48
49
50
51
52
53
54
55
{
"name": "lawn-mowing-website-backend-2021",
"version": "1.0.0",
"description": "About",
"main": "index.js",
"engines": {
"node": "16.7",
"npm": "7.21"
},
"scripts": {
"test": "NODE_ENV=test jest --verbose --runInBand",
"start": "NODE_ENV=production node index.js",
"lint": "eslint .",
"dev": "NODE_ENV=development nodemon index.js",
"deploy": "git push heroku main",
"build:ui": "rm -rf build && cd ../Lawn-Mowing-Website-Frontend-2021/ && npm run build --prod && cp -r build ../Lawn-Mowing-Website-Backend-2021/",
"deploy:full": "npm run build:ui && git add . && git commit -m uibuild && git push && npm run deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/byfsdhr/Lawn-Mowing-Website-backend-2021.git"
},
"keywords": [],
"author": "yifan bao",
"license": "ISC",
"bugs": {
"url": "https://github.com/byfsdhr/Lawn-Mowing-Website-Backend-2021/issues"
},
"homepage": "https://github.com/byfsdhr/Lawn-Mowing-Website-Backend-2021#readme",
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.1.0",
"nodemon": "^2.0.12",
"supertest": "^6.1.6"
},
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"firebase-admin": "^9.12.0",
"mongoose": "^5.13.7",
"mongoose-unique-validator": "^2.0.3"
},
"jest": {
"testEnvironment": "node"
}
}