forked from nekobc1998923/typescript-sdk-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.53 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
83
84
85
86
87
{
"name": "typescript-sdk-starter",
"version": "1.0.2",
"private": false,
"description": "A TypeScript SDK template starter",
"main": "dist/typescript-sdk-starter.js",
"files": [
"dist",
"src",
"types"
],
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"lint": "eslint src test",
"test": "jest",
"dev": "rimraf dist types && cross-env NODE_ENV=development webpack-dev-server --config ./scripts/webpack.dev.js",
"build": "npm run lint && npm run test && rimraf dist types && cross-env NODE_ENV=production webpack --config ./scripts/webpack.prod.js",
"prepare": "husky install",
"release": "standard-version",
"release-major": "standard-version --release-as major",
"release-minor": "standard-version --release-as minor",
"release-patch": "standard-version --release-as patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nekobc1998923/typescript-sdk-starter.git"
},
"keywords": [
"typescript",
"sdk",
"starter",
"webpack",
"editorconfig",
"prettier",
"eslint",
"husky",
"lint-staged",
"standard-version",
"jest"
],
"author": "菜猫子neko",
"license": "MIT",
"bugs": {
"url": "https://github.com/nekobc1998923/typescript-sdk-starter/issues"
},
"homepage": "https://github.com/nekobc1998923/typescript-sdk-starter#readme",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-loader": "^8.2.3",
"cross-env": "^7.0.3",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"vuepress": "^2.0.0-beta.32",
"webpack": "^5.65.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpackbar": "^5.0.2"
},
"lint-staged": {
"*.{ts,js}": [
"eslint"
]
}
}