-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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": "next-stack-e-commerce",
"version": "1.0.0",
"description": "Node JS test task for NextStack",
"main": "app.js",
"scripts": {
"dev": "nodemon --exec ts-node src/app.ts",
"build": "tsc",
"start": "nodemon dist/app.js",
"clean": "rm -rf dist",
"seed": "ts-node src/utils/seeding.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vagison/next-stack-e-commerce.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^8.4.1",
"body-parser": "^1.20.2",
"consola": "^3.2.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-validator": "^7.0.1",
"faker": "^6.6.6",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.3.3",
"morgan": "^1.10.0",
"pretty-error": "^4.0.0",
"socket.io": "^4.7.5"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.12.8",
"babel-plugin-module-resolver": "^5.0.0",
"concurrently": "^8.2.2",
"nodemon": "^2.0.22",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"bugs": {
"url": "https://github.com/vagison/next-stack-e-commerce/issues"
},
"homepage": "https://github.com/vagison/next-stack-e-commerce#readme"
}