-
-
Notifications
You must be signed in to change notification settings - Fork 456
/
package.json
95 lines (95 loc) · 3.33 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
{
"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": {
"prepack": "husky install",
"test": "jest --runInBand --coverage",
"test:ci": "jest --runInBand --coverage --ci --reporters=default --reporters=jest-junit",
"test:watch": "yarn test --watch --collect-coverage=false",
"check-gh-token": ": \"${GH_TOKEN:?Please set GH_TOKEN to a GitHub personal token that can create releases.}\"",
"prerelease": "lerna publish --conventional-commits --conventional-prerelease --exact --create-release github --dist-tag alpha",
"graduate": "lerna publish --conventional-commits --conventional-graduate --exact --create-release github",
"publish-from-git": "lerna publish --exact from-git",
"lint": "eslint .",
"integration": "jest --runInBand --config jest.integration.config.json --setupTestFrameworkScriptFile=./jest.integration.setup.js",
"integration:ci": "jest --runInBand --config jest.integration.config.json --setupTestFrameworkScriptFile=./jest.integration.setup.js --ci --reporters=default --reporters=jest-junit",
"build": "lerna run build && opencollective-postinstall",
"clean": "lerna run clean",
"docs": "cd documentation && yarn && yarn build",
"handlers:upload-handler-sizes": "ts-node scripts/upload-handler-sizes.ts",
"handlers:comment-handler-sizes": "ts-node scripts/comment-handler-sizes.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/serverless-nextjs/serverless-next.js"
},
"author": "Daniel Conde Marin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/serverless-nextjs/serverless-next.js/issues"
},
"homepage": "https://github.com/serverless-nextjs/serverless-next.js#readme",
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@jest/test-sequencer": "^27.4.6",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.19",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "6.0.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"jest-junit": "^13.0.0",
"jest-pnp-resolver": "^1.2.2",
"lerna": "^4.0.0",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"opencollective-postinstall": "^2.0.3"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/serverless-nextjs-plugin"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,yml}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"resolutions": {
"@serverless/cli": "^1.6.0",
"which": "^2.0.2",
"lodash": "^4.17.21"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/compat-layers/*",
"packages/serverless-components/*",
"packages/libs/*"
]
}