-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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
{
"name": "gtts-projects",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"clean": "rimraf \"packages/**/lib\" \"packages/**/*.tsbuildinfo\"",
"compile": "tsc -b tsconfig.build.json && npm run compile -w @gtts/desktop-app",
"prepare": "npm run compile",
"install:cli": "npm i ./packages/cli -g",
"uninstall:cli": "npm uninstall -g @gtts/cli",
"start:app": "npm start -w @gtts/desktop-app",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"workspaces": [
"packages/core",
"packages/cli",
"packages/desktop-app"
],
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"autoprefixer": "^10.4.4",
"css-loader": "^6.7.1",
"electron": "^18.0.3",
"eslint": "^8.13.0",
"eslint-config-standard": "^17.0.0-1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"jest": "^27.5.1",
"postcss": "^8.4.12",
"postcss-loader": "^6.2.1",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.23",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
}
}