forked from unlock-protocol/unlock
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "@unlock-protocol/wedlocks",
"version": "1.0.0",
"description": "The email server for Unlock",
"main": "src/server.js",
"dependencies": {
"@babel/cli": "7.17.10",
"@babel/core": "7.18.2",
"@babel/node": "7.17.10",
"@babel/preset-env": "7.18.2",
"@typescript-eslint/parser": "5.27.0",
"@unlock-protocol/eslint-config": "workspace:./packages/eslint-config",
"babel-eslint": "10.1.0",
"babel-jest": "28.1.0",
"babel-loader": "8.2.5",
"babel-plugin-wildcard": "7.0.0",
"dotenv": "16.0.1",
"eslint": "8.16.0",
"jest": "27.5.1",
"lint-staged": "13.0.0",
"node-forge": "1.3.1",
"nodemailer": "6.7.5",
"nodemon": "2.0.16",
"prettier": "2.6.2",
"ts-jest": "27.1.5",
"typescript": "4.7.2",
"webpack": "5.73.0",
"webpack-cli": "4.9.2",
"winston": "3.7.2"
},
"jest": {
"setupFilesAfterEnv": [
"./setupTests.js"
]
},
"lint-staged": {
".{js,ts,tsx}": [
"eslint --fix"
]
},
"scripts": {
"build": "webpack",
"dev": "UNLOCK_ENV=dev nodemon src/server.js --exec babel-node",
"send": "UNLOCK_ENV=dev nodemon src/send.js --exec babel-node",
"test": "UNLOCK_ENV=test jest",
"lint": "eslint --resolve-plugins-relative-to ../packages/eslint-config --ext .ts,.js src/",
"ci": "yarn test && yarn lint",
"deploy-netlify": "./scripts/deploy-netlify.sh"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-runtime": "7.18.2",
"regenerator-runtime": "0.13.9"
}
}