This repository was archived by the owner on Jan 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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
{
"name": "angryraids",
"version": "0.4.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --prod",
"prebuild:dev": "node scripts/js/write-git-hash.js",
"build:dev": "ng build --prod --configuration=development",
"lint": "ng lint",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand",
"test:coverage": "jest --coverage",
"copy:assets": "./scripts/copy-assets.sh",
"postcopy:assets": "./scripts/asset-to-webp.sh",
"copy:hero": "./scripts/copy-hero-data.sh"
},
"private": true,
"dependencies": {
"@angular/animations": "~7.2.7",
"@angular/cdk": "^7.3.3",
"@angular/common": "~7.2.7",
"@angular/compiler": "~7.2.7",
"@angular/core": "~7.2.7",
"@angular/forms": "~7.2.7",
"@angular/platform-browser": "~7.2.7",
"@angular/platform-browser-dynamic": "~7.2.7",
"@angular/pwa": "^0.12.4",
"@angular/router": "~7.2.7",
"@angular/service-worker": "~7.2.7",
"@ng-bootstrap/ng-bootstrap": "^4.0.4",
"bootstrap": "^4.3.1",
"core-js": "^2.5.4",
"rxjs": "~6.4.0",
"tslib": "^1.9.0",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.0",
"@angular/cli": "~7.3.4",
"@angular/compiler-cli": "~7.2.7",
"@angular/language-service": "~7.2.7",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "^23.3.13",
"@types/node": "~8.9.4",
"codelyzer": "~4.5.0",
"jest": "^24.0.0",
"jest-preset-angular": "^7.0.1",
"ts-jest": "^23.10.5",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "~3.2.2"
},
"jest": {
"preset": "jest-preset-angular",
"roots": [
"src"
],
"setupFilesAfterEnv": [
"<rootDir>/src/test.ts"
]
}
}