forked from funnyzak/tts-now
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "tts-now",
"version": "1.0.2",
"description": "tts assastant",
"main": "build/bundle/main.js",
"scripts": {
"nodev": "nvm install 14.17.0",
"format": "npx prettier --write . && npx eslint --fix --cache .",
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "cross-env NODE_ENV=development node ./config/dev.js",
"dev": "npm run serve",
"dist": "cross-env NODE_ENV=production node ./config/dist.js",
"build:now": "cross-env electron-builder --config electron.builder.js",
"build": "npm run dist && electron-builder build --config electron.builder.js ",
"build:windows": "npm run dist && electron-builder build --config electron.builder.js --win",
"build:mac": "npm run dist && electron-builder build --config electron.builder.js --mac",
"build:linux": "npm run dist && electron-builder build --config electron.builder.js --linux",
"build:all": "npm run dist && electron-builder build --config electron.builder.js --linux --mac --win",
"lint": "eslint --fix .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/funnyzak/tts-now.git"
},
"keywords": [
"electron",
"react",
"typescript",
"webpack"
],
"author": "funnyzak <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/funnyzak/tts-now/issues"
},
"homepage": "https://github.com/funnyzak/tts-now#readme",
"engines": {
"node": ">= 14.7.5",
"npm": ">= 6.14.14"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@emotion/eslint-plugin": "^11.5.0",
"@types/react": "^17.0.35",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"babel-loader": "^8.2.3",
"chalk": "^4.1.2",
"copy-webpack-plugin": "^9.1.0",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"electron": "^15.3.2",
"electron-builder": "^22.14.5",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"git-revision-webpack-plugin": "^5.0.0",
"handlebars": "^4.7.7",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.4.0",
"husky": "^7.0.4",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"lint-staged": "^11.2.3",
"micromatch": "^4.0.4",
"node-sass": "^6.0.1",
"prettier": "2.4.1",
"sass-loader": "^12.2.0",
"source-map-loader": "^3.0.0",
"style-loader": "^3.3.1",
"stylelint": "^13.13.1",
"ts-loader": "^9.2.6",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
},
"dependencies": {
"@alicloud/pop-core": "^1.7.10",
"@ant-design/icons": "^4.7.0",
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@funnyzak/http-server": "^0.2.2",
"aliyun-nls": "^0.3.7",
"antd": "^4.16.13",
"bufferutil": "^4.0.5",
"core-js": "^3.19.1",
"crypto-js": "^4.1.1",
"electron-store": "^8.0.1",
"nanoid": "^3.1.30",
"node-downloader-helper": "^1.0.19",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-audio-player": "^0.17.0",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"typescript": "^4.5.2",
"utf-8-validate": "^5.0.7",
"ws": "^8.2.3",
"xfyun-nls": "^0.2.3"
}
}