-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.92 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.92 KB
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
{
"name": "eth-wallet",
"description": "An Aurelia 2 client application.",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "???"
},
"license": "UNLICENSED",
"dependencies": {
"aurelia": "latest",
"bootstrap": "^5.1.1",
"ethers": "^5.4.6"
},
"devDependencies": {
"@aurelia/testing": "latest",
"@aurelia/ts-jest": "latest",
"@aurelia/webpack-loader": "latest",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"autoprefixer": "^10.3.4",
"css-loader": "^5.2.6",
"eslint": "^7.29.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"htmlhint": "^0.15.1",
"jest": "^27.0.4",
"jest-transform-stub": "^2.0.0",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.0",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.4",
"url-loader": "^4.1.1",
"webpack": "^5.39.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"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": "webpack serve",
"build": "rimraf dist && webpack --env production",
"analyze": "rimraf dist && webpack --env production --analyze",
"test": "jest"
},
"jest": {
"testEnvironment": "jsdom",
"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"
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts"
],
"globals": {
"ts-jest": {
"isolatedModules": true
}
}
}
}