-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.54 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.54 KB
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
58
59
60
61
62
63
64
{
"name": "shop-be",
"version": "1.0.0",
"description": "Online shop",
"main": "index.js",
"scripts": {
"start": "ts-node ./src/server.ts",
"dev": "nodemon",
"build": "tsc",
"test": "mocha -r ts-node/register src/tests/**/*.test.ts"
},
"nodemonConfig": {
"ignore": [
"dist",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anhtuanpro6420/shop-be.git"
},
"author": "Si",
"license": "ISC",
"bugs": {
"url": "https://github.com/anhtuanpro6420/shop-be/issues"
},
"homepage": "https://github.com/anhtuanpro6420/shop-be#readme",
"dependencies": {
"@types/morgan": "^1.9.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validation": "^3.0.8",
"helmet": "^4.6.0",
"joi": "^17.4.2",
"mongoose": "^5.13.3",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/express": "^4.17.12",
"@types/mocha": "^8.2.3",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"chai": "^4.3.4",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^9.0.2",
"nodemon": "^2.0.7",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.4"
}
}