-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.02 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
{
"name": "ecopart_back",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "jest --watchAll --collectCoverage",
"test-CI": "jest --collectCoverage",
"clean": "rimraf ./dist",
"copy-assets": "ts-node tools/copyAssets",
"tsc": "tsc",
"prod:build": " rimraf ./dist && tsc && ts-node tools/copyAssets",
"prod:serve": "node dist/main.js",
"prod:start": "npm run prod:build && node dist/main.js",
"dev:build": "npm-run-all clean tsc copy-assets",
"dev:serve": "nodemon -e js -w dist dist/main.js",
"dev:watch": "nodemon --watch './**/*.ts' --exec 'ts-node' src/main.ts"
},
"keywords": [],
"author": "Julie Coustenoble",
"license": "LGPL-3.0-only",
"dependencies": {
"@types/csv-parse": "^1.2.5",
"@types/uuid": "^9.0.6",
"archiver": "^7.0.1",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"csv-parse": "^5.5.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"fs": "^0.0.1-security",
"i18n-iso-countries": "^7.7.0",
"jsonwebtoken": "^9.0.1",
"nodemailer": "^6.9.7",
"path": "^0.12.7",
"sqlite3": "^5.1.6",
"uuid": "^9.0.1",
"yauzl": "^3.1.3"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.3.3",
"@types/nodemailer": "^6.4.13",
"@types/shelljs": "^0.8.15",
"@types/sqlite3": "^3.1.8",
"@types/supertest": "^2.0.12",
"@types/yauzl": "^2.10.3",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
"fs-extra": "^10.1.0",
"jest": "^29.6.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
}
}