-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.84 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
{
"name": "workflow-engine-service",
"version": "1.0.0",
"main": "build/src/index.js",
"scripts": {
"build": "tsc -b tsconfig.json",
"start": "tsc -b tsconfig.json; node --trace-warnings build/src/index.js prod",
"dev": "concurrently \"tsc -b -w tsconfig.json\" \"nodemon --ext 'js' --ignore 'frontend' --ignore 'cli' --trace-warnings build/src/index.js dev\"",
"test": "clear;jest --coverage --force-exit --runInBand",
"test:watch": "jest --watch --detectOpenHandles"
},
"private": true,
"dependencies": {
"ansi-colors": "^4.1.3",
"axios": "^0.27.2",
"bcrypt": "^5.0.0",
"busboy": "^1.6.0",
"cheerio": "^1.0.0-rc.11",
"cli-progress": "^3.11.1",
"cors": "^2.8.5",
"express": "^4.18.1",
"marked": "^4.0.17",
"mongoose": "^6.3.6",
"redis": "^4.2.0",
"rxjs": "^7.5.6",
"source-map-support": "^0.5.21",
"swagger-ui-express": "^4.4.0",
"tslib": "^2.2.0",
"typescript": "^4.0.2",
"typescript-json-schema": "^0.54.0"
},
"devDependencies": {
"@faker-js/faker": "^7.4.0",
"@types/axios": "^0.14.0",
"@types/bcrypt": "^3.0.0",
"@types/busboy": "^1.5.0",
"@types/chai": "^4.3.3",
"@types/cheerio": "^0.22.31",
"@types/cli-progress": "^3.11.0",
"@types/express": "^4.17.11",
"@types/jest": "^28.1.7",
"@types/mocha": "^9.1.1",
"@types/node": "^14.10.2",
"@types/supertest": "^2.0.12",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"concurrently": "^5.3.0",
"faker": "^6.6.6",
"jest": "^28.1.3",
"mocha": "^10.0.0",
"nodemon": "^2.0.4",
"supertest": "^6.2.4",
"timekeeper": "^2.2.0",
"ts-jest": "^28.0.8"
}
}