-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.37 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
{
"name": "le2ml-api",
"version": "1.3.7",
"description": "API for the LE2ML project",
"main": "src/server.js",
"scripts": {
"clean": "rimraf build",
"copy": "cpy .env build && cpr src/public build/public",
"development": "nodemon src/bin/www --exec babel-node --presets @babel/preset-env",
"start": "cross-env NODE_ENV=development && npm-run-all development",
"copy:doc": "cpr src/doc build/doc -f doc.builder.js",
"server": "babel src --out-dir build",
"build": "npm-run-all clean copy server copy:doc",
"production": "cross-env NODE_ENV=production node ./bin/www",
"serve": "npm-run-all build production",
"lint": "eslint . --ext .js,.json",
"commit": "git-cz",
"release": "standard-version",
"publish": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FlorentinTh/LE2ML-API.git"
},
"author": "FlorentinTh",
"license": "Apache-2.0",
"pre-commit": [
"lint"
],
"bugs": {
"url": "https://github.com/FlorentinTh/LE2ML-API/issues"
},
"homepage": "https://github.com/FlorentinTh/LE2ML-API#readme",
"dependencies": {
"@babel/runtime": "^7.18.6",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"ajv-formats-draft2019": "^1.6.1",
"archiver": "^5.3.1",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"csv": "^5.5.3",
"csvjson": "5.1.0",
"dayjs": "^1.11.3",
"deep-extend": "^0.6.0",
"dockerode": "^3.3.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-rate-limit": "^6.4.0",
"express-validator": "^6.14.2",
"file-type": "16.5.3",
"fs-extra": "^10.1.0",
"helmet": "^5.1.0",
"hidefile": "^3.0.0",
"http-status": "^1.5.2",
"joi": "^17.6.0",
"js-yaml": "^4.1.0",
"JSONStream": "^1.3.5",
"jsonwebtoken": "^8.5.1",
"line-by-line": "^0.1.6",
"mongoose": "^6.4.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"papaparse": "^5.3.2",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"readdirp": "^3.6.0",
"redis": "^4.1.0",
"serve-favicon": "^2.5.0",
"spdy": "^4.0.2",
"striplines": "^1.0.2",
"swagger-ui-express": "^4.4.0",
"uuid": "^8.3.2",
"winston": "^3.8.0"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@babel/node": "^7.18.6",
"@babel/plugin-transform-regenerator": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"babel-plugin-module-resolver": "^4.1.0",
"cpr": "^3.0.1",
"cpy-cli": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.1.0",
"mkdirp": "^1.0.4",
"nodemon": "^2.0.18",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"overrides": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"minimist": "^1.2.6"
}
}