This repository has been archived by the owner on Jul 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.74 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
{
"name": "atlas-core",
"version": "0.1.3",
"description": "Atlas - modern render manager, designed to solve complex render jobs queue and generate render reports.",
"keywords": [
"monitoring",
"manager",
"manager-system",
"visualization",
"3d-graphics",
"2d-graphics",
"automation",
"simulation"
],
"author": {
"name": "Danil Andreev",
"email": "[email protected]",
"url": "https://github.com/DanilAndreev"
},
"contributors": [
{
"name": "Denis Afendikov",
"email": "[email protected]",
"url": "https://github.com/JeyM1"
}
],
"license": "MIT",
"main": "src/index.ts",
"scripts": {
"test": "jest --detectOpenHandles",
"start": "node dest/index.js",
"dev": "tsc && node dest/index.js",
"build": "tsc",
"watch": "npx nodemon",
"exec": "ts-node ./src/index.ts",
"bump-version:pre-release": "standard-version release -- --prerelease"
},
"dependencies": {
"@atlasrender/render-plugin": "^0.1.2",
"ajv": "^7.1.1",
"ajv-formats": "^1.6.0",
"amqplib": "^0.7.1",
"argon2": "^0.27.2",
"crypto-random-string": "^3.3.1",
"dotenv": "^8.2.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-convert": "^2.0.0",
"koa-cors": "^0.0.16",
"koa-jwt": "^4.0.1",
"koa-router": "^10.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.0",
"pg": "^8.5.1",
"redis": "^3.1.1",
"reflect-metadata": "^0.1.13",
"stream-buffers": "^3.0.2",
"temp-dir": "^2.0.0",
"typeorm": "^0.2.32",
"unzipper": "^0.10.11",
"util": "^0.12.3",
"ws": "^7.4.4"
},
"devDependencies": {
"@babel/preset-typescript": "^7.13.0",
"@types/amqplib": "^0.5.17",
"@types/argon2": "^0.15.0",
"@types/crypto-random-string": "^2.0.0",
"@types/jest": "^26.0.22",
"@types/jsonwebtoken": "^8.5.1",
"@types/koa": "^2.13.1",
"@types/koa-convert": "^1.2.3",
"@types/koa-cors": "^0.0.0",
"@types/koa-router": "^7.4.2",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.37",
"@types/redis": "^2.8.28",
"@types/stream-buffers": "^3.0.3",
"@types/supertest": "^2.0.11",
"@types/temp-dir": "^2.0.2",
"@types/unzipper": "^0.10.3",
"@types/ws": "^7.4.1",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"standard-version": "^9.2.0",
"supertest": "^6.1.3",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/dest/"
]
}
}