-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
50 lines (50 loc) · 1.11 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
{
"name": "invidget",
"version": "1.0.0",
"description": "SVG invite widgets that look just like the ones on the Discord client!",
"main": "src/index.js",
"dependencies": {
"@sentry/node": "^6.13.2",
"@svgdotjs/svg.js": "^3.1.1",
"dd-trace": "^1.4.1",
"express": "^4.17.1",
"morgan": "^1.10.0",
"node-fetch": "^2.6.0",
"sharp": "^0.29.1",
"svgdom": "^0.1.8",
"text-to-svg": "^3.1.5",
"winston": "^3.10.0"
},
"devDependencies": {
"dotenv": "^10.0.0",
"iso-639-1": "^2.1.15",
"jest": "^29.6.1",
"jest-fetch-mock": "^3.0.3",
"nodemon": "^2.0.13",
"standard": "^16.0.3"
},
"scripts": {
"start": "node src/index.js",
"test": "jest",
"lint": "standard",
"dev": "nodemon --exec node -r dotenv/config src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SwitchbladeBot/invidget.git"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"testEnvironment": "node",
"automock": false,
"setupFiles": [
"./src/setupJest.js"
]
},
"author": "Switchblade Team",
"license": "MIT"
}