generated from rweich/streamdeck-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.34 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
{
"name": "@rweich/streamdeck-ts-template",
"version": "0.0.0-development",
"description": "a template to create streamdeck plugins in typescript",
"private": true,
"author": "rweich",
"license": "MIT",
"scripts": {
"build": "yarn clean && webpack --mode=development",
"build-prod": "yarn clean && webpack --mode=production",
"ci": "yarn type-check && yarn lint && yarn set-plugin-version 0.0.0",
"clean": "rimraf ./dist/*",
"lint": "eslint 'src/**/*.ts'",
"prepare": "husky install",
"set-plugin-version": "ts-node build/scripts/set-plugin-version.ts",
"type-check": "tsc --noEmit",
"update-template": "update-template https://github.com/rweich/streamdeck-ts-template",
"watch": "webpack watch --mode=development"
},
"dependencies": {
"@rweich/streamdeck-ts": "^4.0.0"
},
"devDependencies": {
"@amille/semantic-release-plugins": "^3.3.10",
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.8.3",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@rweich/eslint-config": "^2.0.1",
"@rweich/prettier-config": "^2.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jsonfile": "^6.0.0",
"@types/node": "*",
"babel-loader": "^8.2.2",
"conventional-changelog-conventionalcommits": "^4.6.0",
"copy-webpack-plugin": "^10.2.4",
"fork-ts-checker-webpack-plugin": "^7.0.0",
"husky": "^7.0.4",
"jsonfile": "^6.1.0",
"lint-staged": "^12.3.3",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.3",
"source-map-loader": "^3.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.2.4",
"update-template": "^1.3.1",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0"
},
"engines": {
"node": ">=14.17"
},
"repository": "rweich/streamdeck-ts-template",
"bugs": "https://github.com/rweich/streamdeck-ts-template/issues",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": "@rweich"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"eslint --quiet --fix"
]
},
"prettier": "@rweich/prettier-config"
}