-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.25 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
{
"name": "perplex-tts",
"version": "1.0.0",
"private": true,
"description": "Browser Twitch TTS.",
"main": "dist/perplex-tts.html",
"scripts": {
"build": "rimraf dist && npm run build-css && npm run build-js",
"build-js": "parcel build src/perplex-tts.html --detailed-report",
"build-css": "node-sass sass/style.scss src/css/stylesheet.css --output-style compressed",
"start": "npm run build && npm run python3-http-server",
"python3-http-server": "cd ./dist/ && python -m http.server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Karar Al-Remahy",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"bulma": "^0.9.0",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"node-sass": "^4.14.1",
"parcel": "^2.0.0-nightly.399",
"rimraf": "^3.0.2",
"typescript": "^4.0.2"
},
"dependencies": {
"@types/node": "^14.10.1",
"dank-twitch-irc": "^4.0.2",
"uhtml": "^2.1.1"
}
}