forked from serverless-nextjs/serverless-next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.23 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
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "serverless-nextjs-monorepo",
"version": "1.8.1",
"description": "Deploy your serverless next applications using the serverless framework",
"main": "index.js",
"directories": {
"example": "examples"
},
"keywords": [
"serverless",
"nextjs",
"lambda",
"next",
"api gateway"
],
"scripts": {
"test": "jest --runInBand",
"packages-install": "lerna exec -- npm install",
"packages-build": "lerna run build",
"test:watch": "npm run test -- --watch --collect-coverage=false",
"publish": "lerna publish --conventional-commits",
"prerelease": "lerna publish --conventional-commits --conventional-prerelease",
"graduate": "lerna publish --conventional-commits --conventional-graduate",
"lint": "eslint .",
"coveralls": "jest --runInBand --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"integration": "jest --runInBand --config jest.integration.config.json --setupTestFrameworkScriptFile=./jest.integration.setup.js",
"postinstall": "opencollective-postinstall || true"
},
"repository": {
"type": "git",
"url": "https://github.com/danielcondemarin/serverless-next.js"
},
"author": "Daniel Conde Marin <danielconde9@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielcondemarin/serverless-next.js/issues"
},
"homepage": "https://github.com/danielcondemarin/serverless-next.js#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.9.0",
"@sls-next/lambda-at-edge": "file:packages/lambda-at-edge",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"adm-zip": "^0.4.13",
"coveralls": "^3.0.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.0.1",
"fs-extra": "^9.0.0",
"jest": "^26.0.1",
"jest-when": "^2.7.0",
"lerna": "^3.16.4",
"next": "^9.1.5",
"next-aws-cloudfront": "file:packages/lambda-at-edge-compat",
"prettier": "^1.17.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"serverless": "^1.51.0",
"serverless-offline": "^4.10.0",
"typescript": "^3.8.3"
},
"jest": {
"clearMocks": true,
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/packages/**/*.js"
],
"moduleNameMapper": {
"fs-extra": "<rootDir>/node_modules/fs-extra"
},
"coverageDirectory": "<rootDir>/coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/packages/serverless-plugin/utils/yml/cfSchema.js",
"<rootDir>/packages/serverless-plugin/utils/test",
"/.serverless_nextjs/",
"/fixtures/",
"/fixture/",
"/examples/",
"/dist/"
],
"watchPathIgnorePatterns": [
"/fixture/",
"/fixtures/"
],
"testPathIgnorePatterns": [
"/.next/",
"/node_modules/",
"/fixtures/",
"/examples/",
"/integration/"
],
"setupFiles": [
"<rootDir>/jest.setup.js"
]
},
"dependencies": {
"opencollective-postinstall": "^2.0.2"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/serverless-nextjs-plugin"
}
}