-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
94 lines (94 loc) · 2.66 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
{
"name": "packager",
"version": "1.0.0",
"main": "./src/index.js",
"license": "MIT",
"scripts": {
"dev": "LOCAL=true nodemon dist/packager",
"build": "rimraf ./dist && tsc",
"deploy:prod": "npm run build && npx serverless@3 deploy -s prod",
"deploy:dev": "npm run build && npx serverless@3 deploy -s dev",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/traverse": "^7.23.2",
"acorn": "^5.7.4",
"acorn-dynamic-import": "^2.0.2",
"acorn-walk": "^8.2.0",
"aws-sdk": "^2.1582.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.0",
"babel-plugin-minify-replace": "^0.5.0",
"browser-resolve": "^1.11.2",
"enhanced-resolve": "^5.16.0",
"estree-walker": "^1.0.1",
"json5": "^1.0.2",
"lodash": "^4.17.21",
"lru-cache": "^4.1.2",
"meriyah": "^4.3.7",
"mz": "^2.7.0",
"node-fetch": "^2.6.7",
"npm-package-arg": "^6.0.0",
"pacote": "^17.0.4",
"raven": "^2.2.1",
"recursive-readdir": "^2.2.2",
"recursive-readdir-sync": "^1.0.6",
"rimraf": "^2.6.2",
"semver": "^5.7.2",
"string-hash": "^1.1.3",
"yarn": "^1.22.17",
"zlib": "^1.0.5"
},
"devDependencies": {
"@types/acorn": "^4.0.2",
"@types/aws-lambda": "^0.0.16",
"@types/babel__core": "^7.1.0",
"@types/babel__traverse": "^7.0.6",
"@types/browser-resolve": "^2.0.4",
"@types/express": "^4.0.37",
"@types/jest": "^21.1.1",
"@types/json5": "^0.0.29",
"@types/lodash": "^4.14.106",
"@types/lru-cache": "^4.1.0",
"@types/mz": "^0.0.32",
"@types/node": "^20.8.9",
"@types/node-fetch": "^2.5.7",
"@types/npm-package-arg": "^5.1.0",
"@types/pacote": "^11.1.7",
"@types/raven": "^2.1.2",
"@types/recursive-readdir": "^2.2.0",
"@types/rimraf": "^2.0.2",
"@types/semver": "^5.4.0",
"@types/string-hash": "^1.1.1",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"express": "^4.19.2",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"serverless-plugin-typescript": "^2.1.5",
"serverless-plugin-warmup": "^8.3.0",
"ts-jest": "^29.1.1",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"typescript": "^4.5.4"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
}
}