This repository has been archived by the owner on Mar 7, 2024. It is now read-only.
generated from robertsmieja-templates/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.05 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
73
74
75
76
77
78
79
80
81
82
{
"author": "Robert Smieja",
"dependencies": {
"@mapbox/rehype-prism": "^0.4.0",
"@mdx-js/loader": "^1.5.5",
"@next/mdx": "^9.2.1",
"next": "^9.2.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"remark-code-screenshot": "^1.0.0",
"remark-images": "^1.0.0",
"remark-jargon": "^2.1.9",
"remark-toc": "^7.0.0"
},
"description": "Template repository for a Typescript-based Node.js project",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.2",
"@types/mdx-js__react": "^1.5.0",
"@types/node": "^13.7.1",
"@types/react": "^16.9.19",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"typescript": "^3.7.5"
},
"engines": {
"node": ">=10",
"npm": ">=6"
},
"husky": {
"hooks": {
"pre-commit": [
"lint-staged"
]
}
},
"keywords": [
"typescript",
"nodejs",
"template",
"babel"
],
"license": "MIT",
"lint-staged": {
"*.{js,ts,jsx,tsx,json,md}": [
"prettier --write"
],
"src/*.{js,ts,jsx,tsx}": [
"eslint --fix"
]
},
"main": "dist/index.js",
"name": "nextjs-md-sandbox",
"private": true,
"scripts": {
"build": "next build",
"clean": "rimraf dist/",
"dev": "next",
"lint": "eslint ./{pages,src}/**/*",
"lint:fix": "eslint --fix ./{pages,src}/**/*",
"lint:staged": "lint-staged",
"prepare": "npm-run-all clean build",
"prepublishOnly": "npm-run-all --parallel test lint",
"prettier": "prettier --write '*.{js,ts,jsx,tsx,json,md}'",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"version": "npm run lint:fix && git add -A src"
},
"version": "0.0.1"
}