-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "food-order-app",
"version": "2.1.0",
"description": "Simple Food Ordering Web App using VueJS and NodeJS",
"main": "index.js",
"scripts": {
"setup_env": "npm install && npm install --prefix client",
"admin": "node admin add",
"start": "node .",
"server": "NODE_ENV=development nodemon . --config nodemon.json",
"build:client": "npm run build --prefix client",
"prod_setup": "npm run build:client",
"start:dev": "concurrently \"npm run server\" \"npm run client\"",
"client": "npm run serve --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "jest --detectOpenHandles --runInBand ./tests",
"ci_test": "NODE_ENV=production npm run test",
"start:prod": "NODE_ENV=production npm start"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "Nilanjan Deb",
"license": "MIT",
"dependencies": {
"commander": "^6.0.0",
"express": "^4.17.1",
"firebase": "^7.18.0",
"firebase-admin": "^9.1.0",
"inquirer": "^7.3.3",
"mongoose": "^5.9.29",
"randomstring": "^1.2.2",
"razorpay": "^2.8.1",
"unique-names-generator": "^4.6.0",
"validator": "^13.1.17"
},
"devDependencies": {
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"jest": "^27.2.4",
"nodemon": "^2.0.4",
"supertest": "^6.1.6"
}
}