-
-
Notifications
You must be signed in to change notification settings - Fork 252
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "@unlock-protocol/wedlocks",
"version": "1.0.0",
"description": "The email server for Unlock",
"main": "src/server.js",
"dependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.26.0",
"@babel/node": "7.26.0",
"@babel/preset-env": "7.26.0",
"@typescript-eslint/parser": "8.16.0",
"@unlock-protocol/eslint-config": "workspace:./packages/eslint-config",
"babel-loader": "9.2.1",
"babel-plugin-wildcard": "7.0.0",
"dotenv": "16.4.5",
"eslint": "9.16.0",
"handlebars": "4.7.8",
"netlify-cli": "15.11.0",
"node-forge": "1.3.1",
"nodemailer": "6.9.16",
"prettier": "3.4.1",
"typescript": "5.7.2",
"winston": "3.17.0"
},
"scripts": {
"build": "netlify build",
"dev": "UNLOCK_ENV=dev netlify functions:serve",
"test": "UNLOCK_ENV=test vitest run --coverage --environment=node",
"lint": "eslint",
"ci": "yarn test && yarn lint",
"deploy-netlify": "./scripts/deploy-netlify.sh"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-runtime": "7.25.9",
"regenerator-runtime": "0.14.1",
"vitest": "2.1.8"
}
}