-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.48 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
{
"name": "openlane-cloud",
"version": "1.0.0",
"description": "Openlane ::TODO::",
"main": "server.js",
"scripts": {
"start": "npm run server",
"server": "node build/src/server.js",
"watch-node": "nodemon build/src/server.js",
"build": "npm run gulp-tslint & npm run gulp-build",
"gulp-build": "gulp build",
"gulp-watch": "gulp watch",
"gulp-tslint": "gulp tslint",
"dev": "npm run gulp-build && npm run server",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run gulp-watch\" \"npm run watch-node\"",
"clean-build": "echo \"Cleaning build/** folder\" & gulp clean:build",
"test": "mocha -r ts-node/register tests/*.ts --exit"
},
"husky": {
"hooks": {
"pre-commit": "npm run gulp-tslint",
"pre-push": "npm run gulp-tslint"
}
},
"repository": {
"type": "git",
"url": "[email protected]:KhaldSoliman/openlane-cloud"
},
"author": "Khaled Soliman",
"license": "ISC",
"dependencies": {
"app-root-path": "^2.2.1",
"archiver": "^5.0.2",
"bee-queue": "^1.3.1",
"body-parser": "^1.19.0",
"chokidar": "^2.1.8",
"cli-table": "^0.3.1",
"cors": "^2.8.5",
"csv-parser": "^2.3.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-list-endpoints": "^4.0.1",
"express-winston": "^3.2.0",
"firebase-admin": "^9.4.1",
"ioredis": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"kafka-node": "^5.0.0",
"mime": "^2.5.2",
"nodemailer": "^6.4.16",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.3.5",
"shelljs": "^0.8.4",
"sqlite3": "^5.0.0",
"tyboost": "^2.0.0",
"uuid": "^8.3.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/register": "^7.12.1",
"@types/archiver": "^3.1.1",
"@types/bluebird": "^3.5.33",
"@types/chai": "^4.2.14",
"@types/chai-http": "^4.2.0",
"@types/mime": "^2.0.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.19.5",
"@types/nodemailer": "^6.4.0",
"@types/redis": "^2.8.28",
"@types/shelljs": "^0.8.8",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"concurrently": "^4.1.0",
"del": "^4.1.1",
"gulp": "^4.0.2",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^5.0.1",
"husky": "^2.3.0",
"mocha": "^8.2.1",
"nodemon": "^1.19.1",
"ts-node": "^9.0.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
}
}