forked from serverless-nextjs/serverless-next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.88 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.88 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
{
"name": "serverless-nextjs-plugin",
"version": "1.8.1",
"description": "A serverless plugin for nextjs 8 serverless target",
"main": "index.js",
"keywords": [
"serverless",
"nextjs",
"lambda",
"next",
"api gateway"
],
"scripts": {
"coveralls": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint .",
"integration": "jest --config jest.integration.config.json --setupTestFrameworkScriptFile=./jest.integration.setup.js",
"test": "jest"
},
"author": "Daniel Conde Marin <danielconde9@gmail.com>",
"license": "ISC",
"peerDependencies": {
"next": "^8.0.0"
},
"devDependencies": {
"adm-zip": "^0.4.13",
"coveralls": "^3.0.3",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.1.0",
"jest-when": "^2.5.0",
"next": "^8.0.4",
"prettier": "^1.16.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"serverless": "^1.38.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielcondemarin/serverless-nextjs-plugin.git"
},
"dependencies": {
"@mapbox/s3urls": "^1.5.3",
"chalk": "^2.4.2",
"debug": "^4.1.1",
"fs-extra": "^7.0.1",
"js-yaml": "^3.12.1",
"klaw": "^3.0.0",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.1",
"mime": "^2.4.0"
},
"jest": {
"clearMocks": true,
"collectCoverage": true,
"collectCoverageFrom": [
"index.js",
"lib/**/*.js",
"utils/**/*.js",
"classes/**/*.js"
],
"coverageDirectory": "<rootDir>/coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/utils/yml/cfSchema.js",
"<rootDir>/utils/test"
],
"modulePathIgnorePatterns": [
"<rootDir>/examples/",
"<rootDir>/integration"
]
},
"engines": {
"node": ">=8.5.0"
}
}