generated from dev-protocol/template-repos-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.38 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
{
"name": "programmable-proxy",
"version": "1.0.0",
"description": "Proxy function for Azure CDN",
"scripts": {
"test": "ava",
"build": "tsc",
"watch": "tsc -w",
"start": "func start",
"pretest": "yarn build",
"prebuild": "rimraf dist",
"prestart": "npm run build",
"lint": "yarn lint:eslint && yarn lint:format",
"lint:eslint": "eslint . --ext .ts,.js --fix",
"lint:format": "prettier --write '**/*.{js,json,md,yml}'"
},
"author": "aggre <[email protected]>",
"license": "MPL-2.0",
"dependencies": {
"@azure/functions": "3.5.1",
"axios": "1.2.3",
"ramda": "0.30.1",
"web3": "1.7.4"
},
"devDependencies": {
"@ava/typescript": "2.0.0",
"@types/dotenv": "8.2.3",
"@types/node": "22.10.1",
"@types/ramda": "0.30.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"ava": "3.15.0",
"dotenv": "16.4.7",
"eslint": "7.32.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-functional": "3.7.2",
"eslint-plugin-prettier": "4.2.1",
"husky": "7.0.4",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"typescript": "5.0.4"
},
"ava": {
"files": [
"**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"/": "dist/"
},
"compile": false
}
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"repository": "[email protected]:dev-protocol/programmable-proxy.git",
"private": true
}