This repository was archived by the owner on Dec 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 3.64 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
{
"name": "LegendsRising",
"version": "0.5.0",
"description": "LegendsRising, a Massively Multiplayer Online Role-Playing Game",
"keywords": [
"legendsrising",
"mmo"
],
"homepage": "http://www.legendsrising.de",
"private": true,
"author": "Marc Scheib <marc.scheib@legendsrising.de>",
"bugs": {
"url": "https://github.com/MarcScheib/legendsrising/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MarcScheib/legendsrising"
},
"scripts": {
"api:start": "./node_modules/.bin/json-server --watch ./test/api/dev.json",
"build:dev": "rimraf dist && webpack --progress -d",
"bump-version": "npm --no-git-tag-version version",
"coverage:jest": "cat test/coverage-jest/lcov.info | coveralls",
"coverage:karma": "cat test/coverage-karma/lcov.info | coveralls",
"lint": "tslint -p tsconfig.json",
"server": "webpack-dev-server -d --inline --env.server",
"test:jest": "rimraf test/coverage-jest && jest --config test/jest.config.json",
"test:jest:watch": "rimraf test/coverage-jest && jest --watchAll --config test/jest.config.json",
"test:karma": "rimraf test/coverage-karma && karma start test/karma.conf.js",
"test:karma:watch": "rimraf test/coverage-karma && karma start test/karma.conf.js --auto-watch --no-single-run"
},
"devDependencies": {
"@types/jest": "20.0.4",
"@types/lodash": "4.14.69",
"@types/node": "8.0.14",
"@types/webpack": "3.0.4",
"aurelia-loader-nodejs": "1.0.1",
"aurelia-pal-nodejs": "1.0.0-beta.1.0.0",
"aurelia-protractor-plugin": "1.0.3",
"aurelia-testing": "1.0.0-beta.3.0.1",
"aurelia-webpack-plugin": "2.0.0-rc.4",
"autoprefixer": "7.1.2",
"awesome-typescript-loader": "3.2.1",
"copy-webpack-plugin": "4.0.1",
"coveralls": "^3.0.0",
"cross-env": "5.0.1",
"css-loader": "0.28.4",
"expose-loader": "0.7.3",
"extract-text-webpack-plugin": "3.0.0",
"file-loader": "0.11.2",
"html-webpack-plugin": "2.29.0",
"http-server": "0.10.0",
"istanbul-instrumenter-loader": "2.0.0",
"jasmine-core": "2.6.4",
"jest": "20.0.4",
"jest-cli": "20.0.4",
"json-loader": "0.5.4",
"json-server": "^0.12.1",
"karma": "1.7.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "1.3.0",
"karma-jasmine": "1.1.0",
"karma-mocha-reporter": "2.2.3",
"karma-webpack": "2.0.4",
"node-sass": "4.5.3",
"postcss-loader": "2.0.6",
"protractor": "5.1.2",
"sass-loader": "^6.0.6",
"style-loader": "0.18.2",
"ts-jest": "20.0.7",
"ts-node": "3.2.0",
"tslint": "~5.8.0",
"typescript": "2.4.1",
"url-loader": "0.5.9",
"wait-on": "2.0.2",
"webpack": "3.5.5",
"webpack-dev-server": "2.7.1"
},
"dependencies": {
"aurelia-animator-css": "^1.0.4",
"aurelia-api": "^3.1.1",
"aurelia-authentication": "^3.7.0",
"aurelia-bootstrapper": "^2.2.0",
"aurelia-event-aggregator": "^1.0.1",
"aurelia-fetch-client": "^1.3.1",
"aurelia-framework": "^1.1.5",
"aurelia-history-browser": "^1.1.0",
"aurelia-loader-webpack": "^2.1.0",
"aurelia-logging-console": "^1.0.0",
"aurelia-metadata": "^1.0.3",
"aurelia-notify": "^0.8.1",
"aurelia-pal": "^1.5.0",
"aurelia-pal-browser": "^1.4.0",
"aurelia-polyfills": "^1.3.0",
"aurelia-router": "^1.5.0",
"aurelia-templating": "^1.7.0",
"aurelia-templating-binding": "^1.4.0",
"aurelia-templating-resources": "^1.5.4",
"aurelia-templating-router": "^1.3.1",
"aurelia-validation": "^1.1.2",
"bootstrap": "4.0.0",
"font-awesome": "^4.7.0",
"jquery": "^3.3.1",
"nprogress": "^0.2.0",
"popper.js": "^1.12.9"
}
}