-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
114 lines (114 loc) · 3.8 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
113
114
{
"name": "tts-now",
"version": "1.0.6",
"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",
"npm:check": "npx npm-check-updates",
"lint:fix": "eslint --max-warnings 100 --fix --cache src --ext .js,.jsx,.ts,.tsx",
"lint:check": "eslint --max-warnings 100 --cache src --ext .js,.jsx,.ts,.tsx",
"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": ">= 16.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@emotion/eslint-plugin": "^11.10.0",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.41.0",
"babel-loader": "^9.0.0",
"chalk": "4.1.2",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"electron": "22.0.0",
"electron-builder": "^23.6.0",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"git-revision-webpack-plugin": "^5.0.0",
"handlebars": "^4.7.7",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"lint-staged": "^13.1.0",
"micromatch": "^4.0.5",
"node-sass": "^8.0.0",
"npm-check-updates": "16.5.5",
"prettier": "2.8.1",
"sass-loader": "^13.1.0",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
"stylelint": "^14.14.0",
"ts-loader": "^9.4.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@alicloud/pop-core": "^1.7.12",
"@ant-design/icons": "^4.7.0",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.5",
"@funnyzak/http-server": "^0.2.3",
"aliyun-nls": "^0.3.8",
"antd": "^5.0.0",
"bufferutil": "^4.0.7",
"core-js": "^3.26.0",
"crypto-js": "^4.1.1",
"electron-store": "^8.1.0",
"nanoid": "^4.0.0",
"node-downloader-helper": "^2.1.4",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-audio-player": "^0.17.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"typescript": "^4.9.4",
"utf-8-validate": "^5.0.10",
"ws": "^8.11.0",
"xfyun-nls": "^0.2.4"
}
}