-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.19 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "alibaba-clone",
"version": "0.0.0",
"scripts": {
"build": "./node_modules/.bin/ts-node build.ts",
"lint": "eslint . --ext .ts",
"server": "node -r module-alias/register ./dist --env=production",
"server:dev": "nodemon",
"client": "node start-client",
"client:admin": "node start-admin",
"start": "concurrently \"yarn server:dev\" \"yarn client\"",
"admin": "concurrently \"yarn server:dev\" \"yarn client:admin\"",
"test": "nodemon --config ./spec/nodemon.json",
"test:no-reloading": "./node_modules/.bin/ts-node --files -r tsconfig-paths/register ./spec"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts, html",
"ignore": [
"src/public"
],
"exec": "./node_modules/.bin/ts-node --files -r tsconfig-paths/register ./src"
},
"_moduleAliases": {
"@daos": "dist/daos",
"@entities": "dist/entities",
"@shared": "dist/shared",
"@server": "dist/Server",
"@models": "dist/models"
},
"dependencies": {
"bcrypt": "^5.0.1",
"command-line-args": "^5.2.0",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-validator": "^6.12.1",
"helmet": "^4.6.0",
"http-status-codes": "^2.1.4",
"jet-logger": "^1.0.6",
"jsonfile": "^6.1.0",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"randomstring": "^1.2.1",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/command-line-args": "^5.2.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/find": "^0.2.1",
"@types/fs-extra": "^9.0.12",
"@types/jasmine": "^3.8.2",
"@types/jsonfile": "^6.0.1",
"@types/jsonwebtoken": "^8.5.4",
"@types/morgan": "^1.9.3",
"@types/mysql": "^2.15.19",
"@types/node": "^16.4.13",
"@types/randomstring": "^1.1.7",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"concurrently": "^6.2.1",
"eslint": "^7.32.0",
"find": "^0.3.0",
"fs-extra": "^10.0.0",
"jasmine": "^3.8.0",
"nodemon": "^2.0.12",
"supertest": "^6.1.4",
"ts-node": "^10.2.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
}
}