-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.75 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
{
"name": "serverless-plugin-neo",
"description": "Serverless plugin that compiles TypeScript code and bundles dependencies with node-file-trace",
"version": "0.3.2",
"author": "Neo Financial Engineering <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/neofinancial/serverless-plugin-neo"
},
"engines": {
"node": ">=14.0.0"
},
"main": "build/index.js",
"files": [
"build"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"clean": "rimraf build",
"clean:modules": "rimraf node_modules",
"lint": "eslint \"**/*.{ts,js}\"",
"format": "prettier --write \"**/*.{ts,js,json,md,yml}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md,yml}\"",
"prepublishOnly": "rimraf build && tsc",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{ts,js}": [
"eslint"
],
"*.{ts,js,json,yaml,yml,md}": [
"prettier --write"
]
},
"dependencies": {
"@vercel/nft": "0.18.2",
"chalk": "4.1.2",
"find-up": "^5.0.0",
"fs-extra": "^10.1.0",
"globby": "^11.1.0",
"pretty-bytes": "^5.6.0",
"recursive-readdir": "^2.2.2"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/debug": "^4.1.7",
"@types/fs-extra": "9.0.13",
"@types/jest": "^27.4.1",
"@types/node": "17.0.25",
"@types/recursive-readdir": "^2.2.1",
"@types/serverless": "^3.0.2",
"eslint": "^7.32.0",
"eslint-config-neo": "^0.6.3",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.8",
"prettier": "^2.6.2",
"serverless": "3.14.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"peerDependencies": {
"typescript": ">=3"
}
}