-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
126 lines (126 loc) · 3.45 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
{
"name": "builtwithaurelia",
"version": "1.0.0",
"description": "A showcase of Aurelia plugins, themes, applications and more",
"main": "dist/app.bundle.js",
"repository": {
"url": "git+ssh://git@github.com/vheissu/builtwithaurelia.git",
"type": "git"
},
"author": "Dwayne Charrington <dwaynecharrington@gmail.com> (https://ilikekillnerds.com)",
"license": "CC0-1.0",
"scripts": {
"test": "nps test",
"start": "nps",
"watch": "nps webpack.server.ssr.watch",
"server": "nps webpack.server.ssr.start",
"build": "nps webpack.build",
"build:ssr": "nps webpack.build.production.ssr"
},
"jest": {
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "\\.spec\\.(ts|js)x?$",
"setupFiles": [
"<rootDir>/test/jest-pretest.ts"
],
"testEnvironment": "node",
"moduleNameMapper": {
"aurelia-(.*)": "<rootDir>/node_modules/$1"
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!**/*.spec.{js,ts}",
"!**/node_modules/**",
"!**/test/**"
],
"coverageDirectory": "<rootDir>/test/coverage-jest",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
],
"mapCoverage": true
},
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/jsdom": "^11.12.0",
"@types/lodash": "^4.14.116",
"@types/node": "^10.11.3",
"@types/webpack": "^4.4.13",
"aurelia-loader-nodejs": "^1.0.1",
"aurelia-protractor-plugin": "^1.0.6",
"aurelia-testing": "^1.0.0",
"aurelia-webpack-plugin": "^3.0.0",
"autoprefixer": "^9.1.5",
"bluebird": "^3.5.2",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"ejs": "^2.6.1",
"exports-loader": "^0.7.0",
"expose-loader": "^0.7.5",
"file-loader": "^2.0.0",
"gulp": "^3.9.1",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"imports-loader": "^0.8.0",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"jsdom": "^12.1.0",
"koa-compress": "^3.0.0",
"koa-html-minifier": "^1.0.1",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.9.3",
"nodemon": "^1.18.4",
"nps": "^5.9.3",
"nps-utils": "^1.7.0",
"postcss-loader": "^3.0.0",
"protractor": "^5.4.1",
"require-dir": "^1.1.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"ts-jest": "^23.10.3",
"ts-loader": "^5.2.1",
"ts-node": "^7.0.1",
"typescript": "^3.1.1",
"url-loader": "^1.1.1",
"wait-on": "^3.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"aurelia-animator-css": "^1.0.4",
"aurelia-bootstrapper": "^2.3.0",
"aurelia-fetch-client": "^1.6.0",
"aurelia-middleware-koa": "^0.1.1",
"aurelia-pal-nodejs": "^1.1.1",
"aurelia-polyfills": "^1.3.0",
"aurelia-ssr-bootstrapper-webpack": "^0.1.1",
"aurelia-store": "^1.1.0",
"aurelia-validation": "^1.2.3",
"bootstrap": "^4.1.3",
"firebase": "^5.5.1",
"font-awesome": "^4.7.0",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.2.1",
"koa": "^2.5.3",
"koa-static": "^5.0.0",
"node-fetch": "^2.2.0",
"popper.js": "^1.14.4",
"xmlhttprequest": "^1.8.0"
}
}