This repository has been archived by the owner on Jan 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.67 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
{
"name": "warmeister",
"description": "An Aurelia 2 client application.",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "???"
},
"license": "AGPL-3.0-or-later",
"dependencies": {
"@aurelia/i18n": "^0.7.0-dev.202004141952",
"@capacitor/core": "^2.0.1",
"@fortawesome/fontawesome-free": "^5.13.0",
"aurelia": "^0.7.0-dev.202004290437",
"bulma": "^0.8.2",
"format-util": "^1.0.5",
"http-link-header": "^1.0.2",
"lodash": "^4.17.15"
},
"devDependencies": {
"@aurelia/testing": "^0.7.0-dev.202004290437",
"@aurelia/webpack-loader": "^0.7.0-dev.202004290437",
"@capacitor/cli": "^2.0.1",
"@types/format-util": "^1.0.1",
"@types/http-link-header": "^1.0.1",
"@types/mocha": "^7.0.0",
"@types/node": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"autoprefixer": "^9.0.0",
"babel-eslint": "^10.0.0",
"browser-do": "^2.0.0",
"chai": "^4.0.0",
"css-loader": "^3.0.0",
"cypress": "^4.4.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^3.0.0",
"htmlhint": "^0.11.0",
"local-web-server": "^4.0.0",
"mocha": "^7.0.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.4",
"rimraf": "^3.0.0",
"sass": "^1.0.0",
"sass-lint": "^1.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"ts-loader": "^6.0.0",
"typescript": "^3.0.0",
"url-loader": "^4.1.0",
"webpack": "^4.0.0",
"webpack-bundle-analyzer": "^3.0.0",
"webpack-cli": "^3.0.0",
"webpack-dev-server": "^3.0.0",
"webpack-shell-plugin-next": "^1.0.0"
},
"scripts": {
"lint:css": "sass-lint -c .sass-lint.yml \"src/**/*.scss\"",
"lint:html": "htmlhint -c .htmlhintrc src",
"lint": "npm run lint:js && npm run lint:html && npm run lint:css",
"test": "npm run test:headless",
"pretest": "npm run lint && npm run build:test",
"start": "webpack-dev-server",
"start:production": "ws",
"start:e2e": "ws --config-file lws.e2e.config.js",
"start:electron": "npm run build && npx cap copy && npx cap open electron",
"build": "rimraf dist && webpack --env production",
"analyze": "rimraf dist && webpack --env production --analyze",
"build:test": "rimraf dist && webpack --env test",
"test:watch": "rimraf dist && webpack --env test --watch --runTest",
"lint:js": "eslint --ext .ts .",
"test:headless": "browser-do --mocha < dist/entry-bundle.js",
"test:chrome": "browser-do --mocha --browser chrome < dist/entry-bundle.js",
"test:e2e": "cypress run"
}
}