-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "javascript-things",
"version": "1.0.0",
"description": "JavaScript code examples",
"main": "src/main.js",
"type":"module",
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "jest",
"test:watch": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cesarrrguez/javascript-things.git"
},
"keywords": [
"JavaScript"
],
"author": "César Rodríguez <cesar.rrguez@gmail.com> (https://cesarrrguez.github.io)",
"license": "MIT",
"homepage": "https://github.com/cesarrrguez/javascript-things#readme",
"bugs": {
"url": "https://github.com/cesarrrguez/javascript-things/issues",
"email": "cesar.rrguez@gmail.com"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"prettier": "^2.1.2"
},
"dependencies": {
"axios": "^0.21.0",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.20",
"nodemailer": "^6.4.17",
"safe-decimals": "^1.0.0",
"winston": "^3.3.3",
"yup": "^0.32.11"
}
}