forked from codesandbox/dependency-packager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.54 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
{
"name": "packager",
"version": "1.0.0",
"main": "./src/index.js",
"license": "MIT",
"scripts": {
"dev": "LOCAL=true node dist",
"build": "rimraf ./dist && tsc",
"deploy:prod": "npm run build && serverless deploy -s prod",
"deploy:dev": "npm run build && serverless 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.3.4",
"acorn": "^5.1.2",
"acorn-dynamic-import": "^2.0.2",
"babel-plugin-minify-dead-code-elimination": "^0.5.0",
"babel-plugin-minify-replace": "^0.5.0",
"browser-resolve": "^1.11.2",
"json5": "^1.0.1",
"lambda-git": "^0.1.1",
"lodash": "^4.17.4",
"lru-cache": "^4.1.2",
"mz": "^2.7.0",
"npm-package-arg": "^6.0.0",
"pacote": "^6.0.2",
"raven": "^2.2.1",
"recursive-readdir": "^2.2.2",
"recursive-readdir-sync": "^1.0.6",
"rimraf": "^2.6.2",
"semver": "^5.4.1",
"string-hash": "^1.1.3",
"yarn": "^1.5.1"
},
"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": "^0.0.5",
"@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": "^8.0.31",
"@types/npm-package-arg": "^5.1.0",
"@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",
"aws-sdk": "^2.415.0",
"eslint": "^4.7.2",
"eslint-config-prettier": "^2.6.0",
"express": "^4.16.1",
"fsevents": "^1.2.7",
"jest": "^21.2.1",
"node-fetch": "^2.3.0",
"serverless-api-cloudfront": "^0.9.2",
"serverless-offline": "^3.16.0",
"serverless-plugin-typescript": "^1.1.3",
"serverless-plugin-warmup": "^3.2.0-rc.1",
"ts-jest": "^21.0.1",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"typescript": "^3.3.3333"
},
"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)$"
}
}