forked from navix/ng-2048
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.5 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
{
"name": "game",
"version": "0.0.0",
"license": "MIT",
"angular-cli": {},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build:prod": "ng build",
"docker:build": "docker build -t registry.gitlab.com/navix/dhub/ng-2048 .",
"docker:push": "docker push registry.gitlab.com/navix/dhub/ng-2048",
"deploy": "npm run build:prod && npm run docker:build && npm run docker:push"
},
"private": true,
"dependencies": {
"@angular/animations": "7.1.4",
"@angular/common": "7.1.4",
"@angular/compiler": "7.1.4",
"@angular/core": "7.1.4",
"@angular/forms": "7.1.4",
"@angular/http": "7.1.4",
"@angular/platform-browser": "7.1.4",
"@angular/platform-browser-dynamic": "7.1.4",
"@angular/router": "7.1.4",
"core-js": "^2.5.1",
"reflect-metadata": "^0.1.10",
"rxjs": "^6.3.3",
"ts-helpers": "^1.1.2",
"tslib": "^1.9.0",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.11.0",
"@angular/cli": "7.1.4",
"@angular/compiler-cli": "7.1.4",
"@angular/language-service": "7.1.4",
"@types/jasmine": "^2.6.2",
"@types/node": "^8.0.47",
"codelyzer": "^4.0.0",
"jasmine-core": "^2.8.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-remap-istanbul": "^0.6.0",
"protractor": "^5.2.0",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "3.1.6"
}
}