-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
39 lines (39 loc) · 1.21 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
{
"name": "twitchautomator",
"version": "6.0.1",
"description": "Twitch VOD automator fluff",
"main": "src/Client/main.ts",
"scripts": {
"watch:style": "node-sass --source-map true --source-map-embed --watch ./src/Assets/style.scss --output ./public/assets/",
"build:style": "node-sass --output-style compressed ./src/Assets/style.scss --output ./public/assets/",
"build:script": "tsc",
"build:client": "",
"serve:server": "php -S localhost:8080 -t public",
"serve:client": "",
"test:server": "php vendor/phpunit/phpunit/phpunit tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrBrax/TwitchAutomator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MrBrax/TwitchAutomator/issues"
},
"homepage": "https://github.com/MrBrax/TwitchAutomator#readme",
"devDependencies": {
"node-sass": "^4.14.1"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"core-js": "^3.8.2",
"eslint": "^7.18.0",
"eslint-plugin-vue": "^6.2.2",
"sass-loader": "^9.0.3",
"ts-loader": "^8.0.14",
"typescript": "^3.9.7",
"webpack": "^4.46.0"
}
}