-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.52 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
{
"name": "relearn",
"version": "0.1.0",
"main": "./dist/index.js",
"repository": "git@github.com:danimal141/relearn.git",
"author": "danimal141 <hideaki.ishii1204@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "env-cmd -f .env ts-node src/index.ts",
"dev:watch": "env-cmd -f .env ts-node-dev --respawn src/index.ts",
"build:local": "env-cmd -f .env npm-run-all clean tsc",
"start:local": "env-cmd -f .env node .",
"tsc": "tsc",
"clean": "rimraf dist/*",
"build": "npm-run-all clean tsc",
"start": "node .",
"check-types": "tsc --noEmit",
"eslint": "eslint src/**/*.ts",
"eslint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write 'src/**/*.{js,ts,json}'",
"lint": "npm-run-all eslint check-types",
"lint:fix": "npm-run-all eslint:fix check-types format",
"prepare": "husky install"
},
"dependencies": {
"@slack/webhook": "^6.1.0",
"@types/lodash": "^4.14.179",
"@types/node": "16",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"dropbox": "^10.26.0",
"env-cmd": "^10.1.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^4.0.0",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.2"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,json}": "prettier --write"
}
}