-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.43 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
{
"name": "capi",
"version": "0.0.0",
"description": "Cards API",
"main": "./src/server.js",
"engines": {
"node": "^12.x"
},
"nodemonConfig": {
"watch": [
"src",
"env",
"util"
],
"ignore": [
"public/*",
"docs/*"
],
"ext": "js, env"
},
"scripts": {
"setup": "npm install -G",
"start": "node src/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/server.js",
"lint": "nodemon --exec eslint .",
"lint:fix": "nodemon --exec eslint . --fix"
},
"devDependencies": {
"eslint": "^7.23.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.6",
"vercel": "^20.1.4"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"command-line-args": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"geo-tz": "^6.0.1",
"html-to-text": "^7.0.0",
"html2plaintext": "^2.1.2",
"ini": "^1.3.6",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"node-emoji": "^1.10.0",
"node-input-validator": "^4.4.0",
"node-slogger": "^2.2.0",
"suncalc": "^1.8.0",
"swagger-ui-express": "^4.1.4",
"text-to-image": "^2.4.4",
"text2png": "^2.3.0",
"yamljs": "^0.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/duckactions/polite-greetings"
},
"author": "Ruan Pato",
"license": "https://creativecommons.org/licenses/by-nc-nd/4.0/"
}