-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 4.67 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 4.67 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "annotto",
"description": "Annotto Web Tool",
"version": "1.8.3",
"author": "La Javaness <[email protected]>",
"repository": "[email protected]:lajavaness/annotto.git",
"license": "apache-2.0",
"main": "src/index.ts",
"engines": {
"node": ">=18.x"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@jest/globals": "^28.1.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/archiver": "^5.2.0",
"@types/busboy": "^0.3.1",
"@types/cors": "^2.8.5",
"@types/crypto-js": "^4.0.0",
"@types/express": "^4.17.1",
"@types/formidable": "^1.2.2",
"@types/jest": "^28.1.2",
"@types/lodash": "^4.14.185",
"@types/mongoose": "^5.10.0",
"@types/morgan": "^1.9.3",
"@types/n-readlines": "^1.0.3",
"@types/node": "^18.7.17",
"@types/node-fetch": "^2.6.2",
"@types/request-promise": "^4.1.48",
"@types/split2": "^3.2.1",
"@types/stream-json": "^1.7.1",
"@types/supertest": "^2.0.12",
"@types/tmp": "^0.2.1",
"@types/unzipper": "^0.10.5",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"concurrently": "^7.6.0",
"cross-env": "^7.0.2",
"dotenv": "^16.0.1",
"dotenv-expand": "^8.0.3",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.1.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.1",
"jest": "^28.1.2",
"jest-extended": "^2.0.0",
"jest-junit": "^14.0.0",
"jest-watch-typeahead": "^1.1.0",
"jest-worker": "^28.1.1",
"ncp": "^2.0.0",
"nodemon": "^2.0.4",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^21.0.5",
"supertest": "^6.2.3",
"ts-jest": "^28",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"amazon-s3-uri": "^0.1.0",
"archiver": "^5.2.0",
"aws-sdk": "^2.814.0",
"busboy": "^0.3.1",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"dayjs": "^1.9.4",
"express": "^4.17.1",
"express-rate-limit": "^7.0.0",
"express-swagger-generator": "^1.1.17",
"formidable": "^1.2.2",
"joi": "^17.6.1",
"keycloak-connect": "^17.0.0",
"lodash": "^4.17.19",
"mongoose": "^5.10.0",
"morgan": "^1.10.0",
"n-readlines": "^1.0.1",
"node-fetch": "^2.6.7",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"split2": "^3.2.2",
"stream-json": "^1.7.1",
"superagent-binary-parser": "^1.0.1",
"tmp": "^0.2.1",
"unzipper": "^0.10.11",
"winston": "^3.6.0"
},
"scripts": {
"prepare": "husky install && yarn --cwd ./annotto-front install",
"clean": "rimraf ./dist",
"build": "yarn clean && tsc && ncp ./statics ./dist/statics",
"start": "yarn build && node ./dist/src/index.js",
"start:debug": "yarn build && node --inspect-brk=0.0.0.0:9229 ./dist/src/index.js",
"start:dev": "NODE_ENV=development concurrently \"yarn --cwd ./annotto-front start\" \"ts-node-dev --respawn --files src/index.ts\"",
"lint": "yarn run eslint --ext .ts,.tsx src tests",
"lint:fix": "yarn lint --fix",
"mock:ci": "cross-env CI=true yarn mock || echo 'No mock server defined, running tests without mocks.'",
"serve": "nodemon --inspect ./dist/src/index.js",
"test": "NODE_ENV=test cross-env jest --runInBand --reporters=default --reporters=jest-junit --watchAll=false --verbose --bail",
"test:ci": "CI=true concurrently \"yarn test --ci\" \"yarn --cwd ./annotto-front test --ci\"",
"test:int:ci": "ENV_TEST=int yarn test --ci",
"test:coverage": "yarn test --coverage"
}
}