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
83 lines (83 loc) · 2.38 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.38 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
76
77
78
79
80
81
82
83
{
"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",
"test:watch": "npm run test -- --watch",
"publish": "lerna publish --conventional-commits",
"lint": "eslint .",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"integration": "jest --config jest.integration.config.json --setupTestFrameworkScriptFile=./jest.integration.setup.js",
"postinstall": "opencollective-postinstall || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielcondemarin/serverless-nextjs-plugin.git"
},
"author": "Daniel Conde Marin <danielconde9@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielcondemarin/serverless-nextjs-plugin/issues"
},
"homepage": "https://github.com/danielcondemarin/serverless-nextjs-plugin#readme",
"devDependencies": {
"adm-zip": "^0.4.13",
"coveralls": "^3.0.6",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.9.0",
"jest-when": "^2.7.0",
"lerna": "^3.16.4",
"next": "^9.1.5",
"prettier": "^1.17.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"serverless": "^1.51.0",
"serverless-offline": "^4.10.0"
},
"jest": {
"clearMocks": true,
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/packages/**/*.js"
],
"coverageDirectory": "<rootDir>/coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/packages/serverless-nextjs-plugin/utils/yml/cfSchema.js",
"<rootDir>/packages/serverless-nextjs-plugin/utils/test",
"/.serverless_nextjs/",
"/fixtures/",
"/examples/"
],
"testPathIgnorePatterns": [
"/.next/",
"/node_modules/",
"/fixtures/",
"/examples/",
"<rootDir>/integration"
],
"setupFiles": [
"<rootDir>/jest.setup.js"
]
},
"dependencies": {
"opencollective-postinstall": "^2.0.2"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/serverless-nextjs-plugin"
}
}