-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "maya",
"version": "1.0.0",
"description": "",
"private": true,
"main": "build/index.js",
"scripts": {
"start": "npm run build:live",
"build": "tsc",
"build:live": "nodemon --watch 'src/**/**' --exec \"ts-node\" src/index.ts",
"lint": "npx eslint src --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/mongoose": "^5.10.3",
"@types/node": "^14.14.35",
"@types/signale": "^1.4.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"discord-akairo": "^8.1.0",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"mongoose": "^5.11.15",
"signale": "^1.4.0",
"tslib": "^1.14.1"
},
"signale": {
"displayDate": true,
"displayTimestamp": true,
"uppercaseLabel": true
},
"lint-staged": {
"**/*.{js,ts}": [
"npm run lint:fix"
]
}
}