-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.89 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
56
57
{
"name": "recipe_app-backend-",
"version": "1.0.1",
"description": "",
"scripts": {
"start:auth[local]": "cross-env NODE_ENV=local nodemon auth.ts",
"start:api[local]": "cross-env NODE_ENV=local nodemon api.ts",
"start:admin[local]": "cross-env NODE_ENV=local nodemon admin.ts",
"start:auth[dev]": "cross-env NODE_ENV=dev nodemon auth.ts",
"start:api[dev]": "cross-env NODE_ENV=dev nodemon api.ts",
"start:admin[dev]": "cross-env NODE_ENV=dev nodemon admin.ts",
"start:auth[staging]": "cross-env NODE_ENV=staging node dist/auth.js",
"start:api[staging]": "cross-env NODE_ENV=staging node dist/api.js",
"start:admin[staging]": "cross-env NODE_ENV=staging node dist/admin.js",
"start:auth[prod]": "cross-env NODE_ENV=prod node dist/auth.js",
"start:api[prod]": "cross-env NODE_ENV=prod node dist/api.js",
"test:inspect": "python tests/main.py",
"init:db": "bash pyscripts/init_db.sh",
"build": "tsc -p .",
"prettier": "prettier --write .",
"clean": "rm -rf node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Saptaktdk/Recipe_App-Backend-.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Saptaktdk/Recipe_App-Backend-/issues"
},
"homepage": "https://github.com/Saptaktdk/Recipe_App-Backend-#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jsonwebtoken": "^9.0.1",
"@types/redis": "^4.0.11",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"pg": "^8.9.0",
"postgres": "^3.3.3",
"uuid": "^9.0.0",
"redis": "^4.6.4"
}
}