generated from erinosher/typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.95 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
66
67
68
69
70
71
72
{
"name": "@hacksocnotts/typescript-starter",
"version": "1.0.0",
"description": "TypeScript Project Template",
"main": "index.js",
"scripts": {
"lint": "eslint . --ignore-path .gitignore --ext .js,.ts",
"lint:staged": "eslint --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint",
"build": "tsc",
"start": "tsc-watch --onSuccess \"node lib/index.js\"",
"test": "jest --watchAll=false --verbose=false",
"test:watch": "jest --watchAll --verbose=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hacksocnotts/typescript-starter.git"
},
"keywords": [
"template",
"typescript"
],
"author": "Aaron Osher <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hacksocnotts/typescript-starter/issues"
},
"homepage": "https://github.com/hacksocnotts/typescript-starter#readme",
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/jsdom": "^16.2.4",
"@types/lodash": "^4.14.161",
"@types/node": "^14.0.22",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsdoc": "^29.1.3",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"tsc-watch": "^4.2.9",
"typescript": "^3.9.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"npm run lint:staged"
]
},
"dependencies": {
"@reduxjs/toolkit": "^1.4.0",
"@types/ws": "^7.2.7",
"discord.js": "^12.3.1",
"dotenv": "^8.2.0",
"graphql": "^15.3.0",
"graphql-request": "^3.0.0",
"jsdom": "^16.4.0",
"lodash": "^4.17.20",
"node-fetch": "^2.6.1"
}
}