This repository was archived by the owner on Feb 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.27 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.27 KB
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
66
67
68
69
70
71
72
73
74
75
{
"name": "snowflake",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Autumn Forest (https://github.com/Autumn-Forest)",
"contributors": [
"VenNeptury <sgtmattis@gmail.com> (https://github.com/Mattis6666)",
"GwenBebe <tooHorribleEmailToBePutHere> (https://github.com/GwenBebe)",
"Naia-love <love.naia@protonmail.com> (https://github.com/Naia-love)"
],
"license": "AGPL-3.0",
"engines": {
"node": "13.6.0"
},
"eslintIgnore": [
"dist",
".vscode"
],
"scripts": {
"dev": "yarn run build && NODE_ENV=development && yarn node .",
"prod": "yarn run build && NODE_ENV=production && yarn node .",
"start": "pm2 start --name Snowflake npm -- run prod",
"pm2": "pm2 start --name Snowflake yarn -- run dev --ignore-watch dist/*",
"test": "yarn tsc -p tsconfig.test.json && yarn run lint",
"lint": "eslint ./src/**/*.ts --fix",
"clean": "rm -rf dist/*",
"reinstall": "yarn run cleanCache && yarn run deleteModules && yarn run deleteLock && yarn run installModules",
"build": "yarn tsc",
"cleanCache": "yarn cache clean",
"deleteModules": "rm -rf node_modules/*",
"deleteLock": "rm yarn.lock",
"installModules": "yarn install && yarn pnpify --sdk",
"push": "func() { git add . && git commit -m \"$1\" && git push; }; func"
},
"husky": {
"hooks": {
"pre-commit": "precise-commits && yarn run test"
}
},
"dependencies": {
"@klasa/stopwatch": "^0.0.1",
"@yarnpkg/pnpify": "^2.3.3",
"canvas": "^2.6.1",
"common-tags": "^1.8.0",
"convert-units": "^2.3.4",
"discord.bio": "^10.1.0",
"discord.js": "12.2.0",
"discord.js-minesweeper": "^1.0.6",
"mongoose": "5.10.0",
"nekos.life": "^2.0.7",
"node-fetch": "^2.6.1",
"ordinal": "^1.0.3",
"pfp.lgbt-wrapper": "^1.0.3",
"sharp": "^0.26.2",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
"@types/common-tags": "^1.8.0",
"@types/mongoose": "^5.10.0",
"@types/node": "^14.14.0",
"@types/node-fetch": "^2.5.7",
"@types/sharp": "^0.26.1",
"@types/tinycolor2": "^1.4.2",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"precise-commits": "^1.0.2",
"prettier": "^2.1.2",
"typescript": "^4.0.5"
}
}