-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.85 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
{
"name": "or-tree-note",
"description": "An Aurelia client application.",
"version": "0.1.0",
"repository": {
"type": "???",
"url": "???"
},
"license": "MIT",
"dependencies": {
"@types/chai": "^4.3.5",
"@types/d3": "^7.1.0",
"@types/mocha": "^10.0.1",
"aurelia-animator-css": "^1.0.4",
"aurelia-bootstrapper": "^2.3.3",
"aurelia-framework": "^1.3.1",
"aurelia-router": "^1.7.1",
"aurelia-store": "^1.7.2",
"d3": "^7.4.4",
"highlight.js": "^11.8.0",
"hotkeys-js": "^3.8.1",
"immer": "^8.0.0",
"localforage": "^1.10.0",
"rangy": "^1.3.1",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@code-dependency/cli": "^0.5.0",
"@cypress/webpack-preprocessor": "^4.1.2",
"@sucrase/jest-plugin": "^2.1.1",
"@types/jasmine": "^3.5.7",
"@types/jest": "~25.1.3",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.6",
"@types/rangy": "^0.0.35",
"@types/webpack": "^4.41.6",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"app-settings-loader": "^1.0.3",
"aurelia-cli": "^2.0.2",
"aurelia-loader-nodejs": "^1.1.0",
"aurelia-testing": "^1.0.0",
"aurelia-webpack-plugin": "^4.0.0",
"autoprefixer": "^9.7.4",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"cypress": "8.6.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"eslint": "^7.20.0",
"eslint-plugin-compat": "^3.8.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.8",
"eslint-plugin-mocha": "^8.0.0",
"expose-loader": "^0.7.5",
"file-loader": "^5.1.0",
"gulp": "^4.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine": "^3.10.0",
"jasmine-core": "^3.10.0",
"jest": "~25.1.0",
"jest-cucumber": "^3.0.1",
"jest-jasmine2": "^23.6.0",
"jest-matchers": "^20.0.3",
"json-loader": "^0.5.7",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "latest",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "^3.1.1",
"karma-mocha-reporter": "latest",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript-preprocessor": "^0.4.0",
"karma-webpack": "^4.0.2",
"mini-css-extract-plugin": "^0.9.0",
"minimatch": "^3.0.4",
"node-noop": "^1.0.0",
"postcss-loader": "^3.0.0",
"prettier-eslint": "^12.0.0",
"promise-polyfill": "^8.1.3",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"sucrase": "^3.20.1",
"through2": "^3.0.1",
"tree-kill": "^1.2.1",
"ts-jest": "^27.0.7",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.2",
"url-loader": "^3.0.0",
"vinyl-fs": "^3.0.3",
"wallaby-webpack": "^3.9.16",
"webpack": "^4.41.6",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"browserslist": [
"defaults"
],
"scripts": {
"build": "webpack --env.production --extractCss",
"start": "webpack-dev-server --extractCss",
"build:dev": "webpack --extractCss",
"analyze": "webpack --env.production --analyze",
"test": "export CHROME_BIN=/usr/bin/chromium && au test",
"e2e": "au cypress",
"e2e:headless": "au cypress --start --run",
"lint": " npx eslint ./ --ext js,ts",
"lint:fix": " npx eslint ./ --ext js,ts --fix",
"lint:cache": "npx eslint ./ --ext js,ts --cache",
"start:depTree": "./node_modules/.bin/code-dependency --exclude 'node_modules' --source ./_code-dep"
},
"engines": {
"node": ">=8.9.0"
},
"prettier": {
"htmlWhitespaceSensitivity": "strict",
"singleQuote": true
},
"babel": {
"presets": [
"@babel/preset-typescript"
]
}
}