-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 3.98 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "quattro-luncher",
"description": "Quattro Luncher makes Zeals Quattro Lunch happy and improve user experience.",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/prettier/prettier-vscode#vs-code-eslint-and-tslint-integration"
},
"license": "MIT",
"dependencies": {
"@material/density": "^4.0.0",
"@material/switch": "^4.0.0",
"aurelia-animator-css": "^1.0.4",
"aurelia-bootstrapper": "^2.3.2",
"aurelia-dialog": "^2.0.0-rc.8",
"date-fns": "^2.6.0",
"firebase": "^7.2.2",
"firebaseui": "^4.2.0",
"material-components-web": "^4.0.0"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^4.0.3",
"@types/jest": "^24.0.9",
"@types/lodash": "^4.14.117",
"@types/node": "^10.11.6",
"@types/webpack": "^4.4.15",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"@typescript-eslint/typescript-estree": "^2.12.0",
"app-settings-loader": "^1.0.2",
"aurelia-cli": "^1.0.2",
"aurelia-loader-nodejs": "^1.0.1",
"aurelia-pal-nodejs": "^1.2.0",
"aurelia-testing": "^1.0.0",
"aurelia-tools": "^2.0.0",
"aurelia-webpack-plugin": "^3.0.0",
"autoprefixer": "^9.4.8",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^1.0.0",
"cssnano": "^4.1.10",
"cypress": "^3.2.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"expose-loader": "^0.7.5",
"extract-loader": "^3.1.0",
"file-loader": "^2.0.0",
"gulp": "^4.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jest": "^24.1.0",
"jest-cli": "^24.1.0",
"jest-transform-stub": "^2.0.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.4.3",
"minimatch": "^3.0.4",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"promise-polyfill": "^8.1.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"through2": "^3.0.0",
"tree-kill": "^1.2.1",
"ts-jest": "^24.0.0",
"ts-loader": "^5.2.1",
"ts-node": "^7.0.1",
"typescript": "^3.7.3",
"url-loader": "^1.1.2",
"vinyl-fs": "^3.0.3",
"webpack": "^4.27.0",
"webpack-bundle-analyzer": "^3.0.4",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"browserslist": [
"defaults"
],
"scripts": {
"build": "webpack --env.production --extractCss",
"start": "webpack-dev-server --extractCss",
"build:dev": "webpack --extractCss",
"deploy": "rm -rf dist/* && webpack --env.production --extractCss && firebase deploy --only hosting",
"deploy:rules": "firebase deploy --only firestore:rules",
"analyze": "webpack --env.production --analyze",
"test": "au test",
"e2e": "au cypress",
"e2e:headless": "au cypress --run --start"
},
"engines": {
"node": ">=8.9.0"
},
"jest": {
"moduleNameMapper": {
"^aurelia-binding$": "<rootDir>/node_modules/aurelia-binding"
},
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"^.+\\.(css|less|sass|scss|styl|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "jest-transform-stub",
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.spec\\.(ts|js)$",
"setupFiles": [
"<rootDir>/test/jest-pretest.ts"
],
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!**/*.spec.{js,ts}",
"!**/node_modules/**",
"!**/test/**"
],
"coverageDirectory": "<rootDir>/test/coverage-jest",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
]
}
}