forked from ILLGrenoble/visa-cloud-web-provider-proxmox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.42 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": "@illgrenoble/visa-cloud-web-provider-proxmox",
"version": "2.0.0",
"description": "VISA Cloud Web Provider for Proxmox",
"main": "index.js",
"scripts": {
"test": "mocha -r ts-node/register src/__tests__/unit/**/*.ts",
"start:dev": "nodemon",
"clean": "rimraf ./dist",
"build": "rimraf ./dist && tsc",
"start": "npm run build && node index.js",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js"
},
"keywords": [],
"author": "",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/express": "^4.17.11",
"@types/mocha": "^8.2.2",
"@types/moment-timezone": "^0.5.30",
"@types/node": "^14.11.8",
"@types/pg": "^8.6.0",
"@types/winston-syslog": "^2.0.3",
"concurrently": "^6.2.1",
"mocha": "^8.4.0",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"sqlite3": "^4.2.0"
},
"dependencies": {
"async-mutex": "^0.3.2",
"axios": "^0.21.4",
"axios-debug-log": "^0.8.4",
"chai": "^4.3.4",
"date-fns": "^2.23.0",
"db-migrate-sqlite3": "^0.4.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.4.2",
"js-yaml": "^4.1.0",
"moment-timezone": "^0.5.31",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"sqlite": "^4.0.23",
"tsyringe": "^4.5.0",
"ts-node": "^9.0.0",
"typeorm": "^0.2.41",
"typescript": "^4.0.3",
"winston": "^3.3.3",
"winston-syslog": "^2.4.4"
}
}