-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.03 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "one-license-server",
"version": "1.0.0",
"author": {
"name": "Rishav Anand",
"email": "hello@rishavanand.com",
"url": "https://rishavanand.com"
},
"repository": {
"url": "https://github.com/one-ai/one-license-server.git"
},
"scripts": {
"build": "ts-node ./util/build.ts",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"start": "node -r module-alias/register ./dist",
"start:dev": "nodemon --config nodemon.json",
"test": "npm run lint && jest"
},
"husky": {
"pre-commit": "npm run lint"
},
"_moduleAliases": {
"@entities": "dist/entities",
"@core": "dist/core",
"@server": "dist/Server",
"@config": "dist/config",
"@services": "dist/services",
"@models": "dist/models",
"@repositories": "dist/repositories",
"@controllers": "dist/controllers",
"@helpers": "dist/helpers",
"@types": "dist/types"
},
"dependencies": {
"bcrypt": "^4.0.1",
"command-line-args": "^5.1.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"find": "^0.3.0",
"helmet": "^3.22.0",
"http-status-codes": "^1.4.0",
"jsonfile": "^6.0.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongoose": "^5.9.19",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.2",
"supertest": "^4.0.2",
"winston": "^3.2.1"
},
"engines": {
"node": "^12.16.1",
"npm": "^6.13.4"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/fs-extra": "^8.1.0",
"@types/jest": "^25.1.5",
"@types/mocha": "^7.0.2",
"@types/mongoose": "^5.7.8",
"@types/node-fetch": "^2.5.5",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"@hapi/joi": "^17.1.1",
"@types/bcrypt": "^3.0.0",
"@types/command-line-args": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.3",
"@types/find": "^0.2.1",
"@types/hapi__joi": "^16.0.12",
"@types/helmet": "0.0.45",
"@types/jasmine": "^3.5.10",
"@types/jsonfile": "^5.0.0",
"@types/jsonwebtoken": "^8.3.9",
"@types/morgan": "^1.9.0",
"@types/node": "^13.9.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"fs-extra": "^9.0.0",
"husky": "^4.2.3",
"jest": "^24.9.0",
"prettier": "^2.0.2",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3",
"jasmine": "^3.5.0",
"tslint": "^6.1.0",
"tslib": "^1.11.1",
"ts-node": "^8.8.1",
"tsconfig-paths": "^3.9.0"
}
}