-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.5 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
{
"name": "mern-e-shop",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "tsc && node api/dist/server.js",
"watch": "tsc -w",
"api:dev": "nodemon api/dist/server.js",
"api:prod": "node api/dist/server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run api:dev\" \"npm run client\"",
"prod": "concurrently \"npm run api:prod\" \"npm run client\"",
"data:import": "node api/dist/seeder",
"data:destroy": "node api/dist/seeder -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sakilk130/mern-e-shop.git"
},
"author": "sakil khan",
"license": "ISC",
"bugs": {
"url": "https://github.com/sakilk130/mern-e-shop/issues"
},
"homepage": "https://github.com/sakilk130/mern-e-shop#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cli-color": "^2.0.1",
"dotenv": "^14.3.2",
"express": "^4.17.2",
"express-async-handler": "^1.1.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.8",
"morgan": "^1.10.0",
"multer": "^1.4.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cli-color": "^2.0.2",
"@types/colors": "^1.2.1",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"concurrently": "^7.0.0",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
}
}