-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.89 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
{
"name": "statistiques-impact",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"buildServer": "tsc",
"build": "npm run buildServer && cd src/client && npm i && npm run build",
"start": "node dist",
"startDev": "nodemon",
"migration:generate": "npm run buildServer && typeorm migration:generate -d dist/src/dataSource.js src/migrations/$npm_config_name",
"migration:create": "typeorm migration:create src/migrations/$npm_config_name",
"migration:run": "npm run buildServer && typeorm migration:run -d dist/src/dataSource.js",
"migration:revert": " npm run buildServer && typeorm migration:revert -d dist/src/dataSource.js",
"typeorm": "typeorm-ts-node-esm",
"script:importStats": "npm run buildServer && node dist/src/scripts/importStats/importStats.js",
"script:insertProducts": "npm run buildServer && node dist/src/scripts/insertProducts/insertProducts.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.20",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.6.4"
},
"dependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.13",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/multer": "^1.4.11",
"@types/node": "^20.8.2",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"http-status": "^1.6.2",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"node-fetch": "^3.3.2",
"pg": "^8.8.0",
"pg-connection-string": "^2.6.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.16"
},
"engines": {
"node": "^18.0.0"
}
}