This repository has been archived by the owner on Jan 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.16 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
{
"name": "tsbase-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for a tsbase-components project",
"main": "index.js",
"private": true,
"scripts": {
"clean": "rm -rf .git",
"scss": "node-sass src/app/scss/styles.scss -o=public --output-style=compressed -w",
"scss-once": "node-sass src/app/scss/styles.scss -o=public --output-style=compressed",
"tsc-el": "tsc -w",
"tsc-el-once": "tsc",
"tsc-app": "webpack -w --config webpack.dev.js",
"tsc-app-once": "webpack --config webpack.prod.js",
"build": "npm run copy-static-files && npm run tsc-el-once && npm run scss-once && npm run tsc-app-once",
"serve": "electron ./public/main.js",
"copy-static-files": "rm -rf public && mkdir public && cp -R src/app/wwwroot/* public",
"start": "npm run build && concurrently \"npm run scss\" \"npm run tsc-el\" \"npm run tsc-app\" \"npm run serve\"",
"test": "karma start --browsers ChromeDebugging",
"test-once": "karma start --browsers ChromeHeadless --singleRun",
"lint": "eslint src/**/*.ts",
"package": "electron-packager ./public --platform=win32 --arch=x64 --out=bin"
},
"author": "Joseph Bayes",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@types/core-js": "^2.5.4",
"@types/es6-promise": "^3.3.0",
"@types/jasmine": "^2.8.17",
"@types/node": "^13.13.21",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"concurrently": "^5.3.0",
"core-js": "^2.6.5",
"electron": "^10.1.3",
"electron-packager": "^15.1.0",
"eslint": "^6.8.0",
"fs-extra": "^8.1.0",
"jasmine-core": "^2.5.2",
"karma": "^5.2.3",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "^1.1.0",
"karma-junit-reporter": "^1.2.0",
"karma-typescript": "^5.2.0",
"node-sass": "^4.14.1",
"puppeteer": "^1.20.0",
"reflect-metadata": "^0.1.13",
"ts-loader": "^5.4.5",
"tsbase": "^3.0.12",
"tsbase-components": "2.1.0",
"tslib": "^1.13.0",
"tsmockit": "^1.0.5",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
}
}