-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
executable file
·123 lines (123 loc) · 3.58 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "ezpaarse",
"version": "3.10.4",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/ezpaarse-project/ezpaarse.git"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@ezpaarse-project/ezmesure": "^3.0.0",
"@ezpaarse-project/ezpaarse": "^3.0.0",
"@faker-js/faker": "^8.4.1",
"axios": "^1.7.5",
"body-parser": "^1.20.1",
"boom": "^7.3.0",
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"co": "~4.6.0",
"co-busboy": "^2.0.0",
"connect-mongo": "^5.1.0",
"cookie-parser": "~1.4.5",
"csv": "^6.3.10",
"ejs": "^3.1.10",
"errorhandler": "~1.5.1",
"express": "^4.19.2",
"express-session": "^1.18.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"geoip-lite": "^1.4.10",
"iconv-lite": "^0.6.3",
"jschardet": "^3.1.3",
"lazy": "~1.0.11",
"lines-skipper": "0.0.5",
"lodash": "^4.17.21",
"lsof": "0.1.0",
"mime": "^4.0.4",
"moment": "^2.30.1",
"mongodb": "^6.8.0",
"morgan": "^1.10.0",
"nconf": "^0.12.1",
"nodemailer": "^6.9.14",
"passport": "^0.7.0",
"passport-http": "~0.3.0",
"passport-local": "~1.0.0",
"pm2": "^5.4.2",
"request": "^2.88.2",
"socket.io": "^4.7.5",
"tmp-reaper": "~0.0.5",
"type-is": "~1.6.18",
"useragent": "^2.3.0",
"uuid": "^10.0.0",
"winston": "^3.14.2",
"xlsjs": "^1.0.1",
"xlsx": "^0.18.5",
"xml-mapping": "~1.7.2",
"yargs": "^17.6.0"
},
"optionalDependencies": {
"@mdi/font": "^7.4.47",
"@nuxtjs/auth": "^4.9.1",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/i18n": "^7.3.1",
"file-saver": "^2.0.5",
"i18n-iso-countries": "^7.11.3",
"nuxt": "^2.16.3",
"pretty-bytes": "^6.1.1",
"socket.io-client": "^4.7.5",
"vuedraggable": "^2.24.3",
"vuetify": "^2.6.15",
"vuex": "^3.6.2"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^9.28.0",
"husky": "^9.1.5",
"mocha": "^10.7.3",
"nodemon": "^3.1.4",
"should": "*",
"should-http": "*",
"zombie": "^6.1.4"
},
"scripts": {
"test": "make test-pkb; make test",
"insertversion:docker": "sed -i \"s#\\(image: ezpaarseproject/ezpaarse:\\)\\([\\.a-z0-9]\\+\\)#\\1${npm_package_version}#g\" docker-compose.yml",
"insertversion:makefile": "sed -i \"s#\\(ezpaarseproject/ezpaarse:\\)\\([\\.a-z0-9]\\+\\)#\\1${npm_package_version}#g\" Makefile",
"version": "npm run insertversion:docker && npm run insertversion:makefile && git add docker-compose.yml Makefile",
"lint": "eslint --ext .js,.vue lib/ test/ routes/ middlewares/ client/",
"build": "nuxt build --no-generate -c client/nuxt.config.js",
"postinstall": "npm run pm2:delete && npm run pm2:update",
"docs:build": "vuepress build doc",
"docs:dev": "vuepress dev doc",
"start": "pm2-runtime pm2.config.js",
"pm2:startd": "pm2 start pm2.config.js",
"pm2:dev": "pm2-runtime pm2.config.js --env development",
"pm2:stop": "pm2 stop pm2.config.js",
"pm2:delete": "pm2 delete pm2.config.js",
"pm2:restart": "pm2 restart pm2.config.js",
"pm2:update": "pm2 update",
"pm2:status": "pm2 list",
"pm2:logs": "pm2 logs ezpaarse",
"pm2:monitor": "pm2 monit pm2.config.js",
"pm2:kill-daemon": "pm2 kill",
"prepare": "node .husky/install.mjs"
},
"nodemonConfig": {
"watch": [
"test/*.js",
"platforms/*.js",
"middlewares/*.js",
"resources/*.js",
"routes/*.js"
],
"ignore": [
"tmp",
"client"
]
}
}