-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "node_new",
"config": {
"packageName": "node_new"
},
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon",
"build:prod": "tsc && npm run do:webpack && npm run do:postbuild",
"do:webpack": "webpack --progress",
"do:postbuild": "copyfiles ./package.json ./dist/ && copyfiles ./%npm_package_config_packageName%.conf-template ./dist/",
"version:patch": "npm --no-git-tag-version version patch && npm ci",
"version:minor": "npm --no-git-tag-version version minor && npm ci",
"version:major": "npm --no-git-tag-version version major && npm ci"
},
"author": "Vilius",
"license": "ISC",
"dependencies": {
"agenda": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"dateformat": "^5.0.3",
"ejs": "^3.1.9",
"express": "^4.18.3",
"fast-csv": "^5.0.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"luxon": "^3.4.4",
"mongodb": "^6.5.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-env-file": "^0.1.8",
"node-fetch": "^3.3.2",
"node-schedule": "^2.1.1",
"path": "^0.12.7",
"q": "^1.5.1",
"saslprep": "^1.0.3",
"supertest": "^6.3.4",
"webpack": "^5.90.3",
"winston": "^3.12.0"
},
"devDependencies": {
"@types/bson": "^4.2.0",
"@types/mongodb": "^4.0.7",
"@types/node": "^20.11.30",
"concurrently": "^8.2.2",
"copyfiles": "^2.4.1",
"nodemon": "^3.1.0",
"rimraf": "^5.0.5",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}