-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.21 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "nodejs-ekaly",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"ng": "ng",
"start": "nodemon --exec npx ts-node api/server.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint -c .eslintrc.js --ext .ts api",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"heroku-postbuild": "npx ng build"
},
"compilerOptions": {
"module": "CommonJS"
},
"author": "",
"license": "ISC",
"dependencies": {
"@angular/animations": "~13.3.0",
"@angular/common": "~13.3.0",
"@angular/compiler": "~13.3.0",
"@angular/core": "~13.3.0",
"@angular/forms": "~13.3.0",
"@angular/platform-browser": "~13.3.0",
"@angular/platform-browser-dynamic": "~13.3.0",
"@angular/router": "~13.3.0",
"@popperjs/core": "^2.11.5",
"@sweetalert2/ngx-sweetalert2": "^11.0.0",
"@syncfusion/ej2-angular-kanban": "^20.1.47",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"bootstrap": "^5.1.3",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"ejs": "^3.1.6",
"env-var": "^7.1.1",
"express": "^4.17.3",
"helmet": "^5.0.2",
"jquery": "^3.6.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.4.1",
"mongoose": "^8.8.3",
"node-fetch": "^2.6.7",
"nodemailer": "^6.7.3",
"nodemon": "^2.0.15",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"rxjs": "~7.5.0",
"sweetalert2": "^11.4.8",
"ts-node": "^10.7.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.0",
"@angular/cli": "~13.3.0",
"@angular/compiler-cli": "~13.3.0",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"eslint": "^8.11.0",
"jasmine-core": "~4.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"typescript": "^4.6.3"
},
"browser": {
"fs": false,
"path": false,
"os": false,
"crypto": false,
"stream": false,
"http": false,
"tls": false,
"zlib": false,
"https": false,
"net": false
}
}