generated from staticwebdev/vanilla-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.99 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
{
"name": "my-app",
"description": "An Aurelia 2 client application.",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/mobilemancer/au2-droid-worx"
},
"license": "MIT",
"dependencies": {
"aurelia": "latest",
"@aurelia/router": "latest"
},
"devDependencies": {
"@aurelia/plugin-gulp": "latest",
"@aurelia/testing": "latest",
"@aurelia/ts-jest": "latest",
"@types/jest": "^26.0.23",
"@types/node": "^15.3.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"autoprefixer": "^10.2.5",
"connect": "^3.7.0",
"connect-history-api-fallback": "^1.6.0",
"connect-injector": "^0.4.4",
"cross-env": "^7.0.3",
"del": "^6.0.0",
"eslint": "^7.26.0",
"gulp": "^4.0.0",
"gulp-dumber": "^1.0.3",
"gulp-dumber-css-module": "^0.1.1",
"gulp-if": "^3.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.0",
"gulp-terser": "^2.0.1",
"gulp-typescript": "^5.0.1",
"htmlhint": "^1.1.4",
"jest": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"merge2": "^1.4.1",
"open": "^8.0.8",
"postcss-url": "^10.1.3",
"serve-static": "^1.16.2",
"socket.io": ">=4.8.0",
"typescript": "^4.2.4"
},
"scripts": {
"lint:js": "eslint src test --ext .js,.ts",
"lint:html": "htmlhint -c .htmlhintrc src",
"lint": "npm run lint:js && npm run lint:html",
"pretest": "npm run lint",
"start": "gulp",
"build": "gulp clean && cross-env NODE_ENV=production gulp build",
"clear-cache": "gulp clear-cache",
"test": "jest"
},
"jest": {
"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|html)$": [
"@aurelia/ts-jest",
{
"useCSSModule": true
}
]
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts"
]
}
}