-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.69 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
{
"name": "family-tree",
"version": "1.0.0",
"license": "MIT",
"author": "Lon Ilesanmi",
"description": "Family Tree",
"angular-cli": {},
"scripts": {
"start": "ng serve --open",
"prod": "ng serve --proxy-config proxy.conf.json --prod --open",
"lint": "tslint \"src/**/*.ts\"",
"test": "ng test",
"pree2e": "webdriver-manager update",
"e2e": "protractor",
"build-dev": "ng build --watch",
"build": "ng build --prod --env=prod --base-href /family-tree/",
"server": "cd server && npm start"
},
"private": true,
"dependencies": {
"@angular/common": "^5.0.0-rc.1",
"@angular/compiler": "^5.0.0-rc.1",
"@angular/core": "^5.0.0-rc.1",
"@angular/forms": "^5.0.0-rc.1",
"@angular/http": "^5.0.0-rc.1",
"@angular/platform-browser": "^5.0.0-rc.1",
"@angular/platform-browser-dynamic": "^5.0.0-rc.1",
"@angular/router": "^5.0.0-rc.1",
"@types/underscore": "^1.8.8",
"bootstrap": "4.0.0-beta.2",
"core-js": "2.4.1",
"font-awesome": "4.7.0",
"jquery": "3.1.1",
"rxjs": "^5.4.2",
"tether": "1.4.0",
"ts-helpers": "1.1.1",
"underscore": "1.8.3",
"zone.js": "^0.8.14"
},
"devDependencies": {
"@angular/cli": "^1.5.0-beta.4",
"@angular/compiler-cli": "^5.0.0-rc.1",
"@types/jasmine": "2.5.38",
"@types/node": "6.0.42",
"codelyzer": "~3.2.0",
"jasmine-core": "2.5.2",
"jasmine-spec-reporter": "2.5.0",
"karma": "1.2.0",
"karma-chrome-launcher": "2.0.0",
"karma-cli": "1.0.1",
"karma-jasmine": "1.0.2",
"karma-remap-istanbul": "0.2.1",
"nodemon": "1.11.0",
"protractor": "~4.0.13",
"ts-node": "1.2.1",
"tslint": "~5.7.0",
"typescript": "~2.4.2"
}
}