-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.61 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": "typescript-starter-template",
"version": "0.0.1",
"description": "A simple typescript starter app",
"main": "dist/index.ts",
"repository": "https://github.com/killerchip/typescript-starter-template.git",
"author": "Costas Ioannou <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"develop": "nodemon",
"start": "yarn build && node dist/index.js",
"test": "jest",
"lint": "tsc --noEmit && eslint ./ --ext .js,.ts,.tsx",
"pretty": "prettier --write .",
"update": "ncu -u",
"customize": "yarn mrm --dir ./.mrm customize -i",
"detach": "git remote remove origin && yarn customize",
"build": "rimraf dist && webpack",
"prepare": "husky install",
"pre-commit": "pretty-quick --staged"
},
"dependencies": {
"typescript": "^4.4.4"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.5",
"mrm": "^3.0.10",
"mrm-core": "^6.1.7",
"nodemon": "^2.0.13",
"npm-check-updates": "^11.8.5",
"prettier": "2.4.1",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"ts-node": "^10.3.0",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0"
}
}