-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 2.1 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
{
"name": "storage_service_traceability",
"version": "1.0.1",
"scripts": {
"bundle-swagger": "redocly bundle src/swagger/index.json --output src/swagger/swagger.json",
"build": "yarn bundle-swagger && webpack --mode production --config webpack.config.cjs",
"dev": "yarn npm-run-all --parallel bundle-swagger watch:build watch:server",
"lint": "eslint",
"postinstall": "husky",
"start": "node dist/index.js",
"test": "jest",
"test:ci": "jest --ci --json --coverage --testLocationInResults --outputFile=report.json",
"watch:build": "webpack --watch --mode development",
"watch:server": "nodemon \"./dist/server.js\" --watch \"./dist\"",
"release:doc": "node scripts/release-doc.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.693.0",
"@google-cloud/storage": "^7.7.0",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"lodash": "^4.17.21",
"swagger-ui-express": "^5.0.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@jest-mock/express": "^2.0.2",
"@redocly/cli": "^1.25.11",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.16",
"@types/swagger-ui-express": "^4.1.7",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.0.1",
"husky": "^9.0.10",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4"
}
}