This repository has been archived by the owner on Dec 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
70 lines (70 loc) · 1.9 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
{
"name": "imager",
"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": {
"puppeteer": "^0.13.0",
"tar": "^4.2.0"
},
"devDependencies": {
"@types/acorn": "^4.0.2",
"@types/aws-lambda": "^0.0.16",
"@types/browser-resolve": "^0.0.5",
"@types/express": "^4.0.37",
"@types/jest": "^21.1.1",
"@types/lodash": "^4.14.76",
"@types/mz": "^0.0.32",
"@types/node": "^8.0.31",
"@types/npm-package-arg": "^5.1.0",
"@types/puppeteer": "^0.13.9",
"@types/raven": "^2.1.2",
"@types/rimraf": "^2.0.2",
"@types/semver": "^5.4.0",
"@types/string-hash": "^1.1.1",
"@types/tar": "^4.0.0",
"aws-lambda": "^0.1.2",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"copy-webpack-plugin": "^4.3.1",
"eslint-config-prettier": "^2.9.0",
"jest": "^21.2.1",
"serverless-offline": "^3.16.0",
"serverless-plugin-warmup": "^3.3.0-rc.1",
"serverless-webpack": "^4.2.0",
"ts-jest": "^21.0.1",
"ts-loader": "^3.2.0",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"typescript": "^2.6.2",
"webpack": "^3.10.0",
"webpack-node-externals": "^1.6.0",
"webpack-permissions-plugin": "^0.0.2"
},
"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)$"
}
}