-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.7 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
{
"name": "hadithhouse",
"version": "0.1.0",
"description": "Website for Hadith House project",
"main": "Gruntfile.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Rafid Khalid Al-Humaimidi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hadithhouse/hadithhouse.git"
},
"//": [
"- The packages below are used only during local development to help with ",
" offline development.",
"- The versions of @types/angular* don't necessarily match the packages ",
" versions, apparently because some versions don't necessarily contain ",
" changes in syntax.",
"- While I am using bootstrap version 4.0.0-beta.3, the latest version I ",
" could find for @types/bootstrap is 3.3.36 so I didn't install it.",
"- While I am using d3 version 3.5.16, I couldn't find the same version ",
" for @types/d3 so I used 3.5.34 instead.",
"- The package 'moment' in dependencies is not needed itself, but its ",
" @types is neeeded.",
"- @angular dependencies are added under dependencies (not ",
" devDependencies) because they have the typings as well, which is ",
" required for TypeScript compilation."
],
"devDependencies": {
"angular": "^1.7.9",
"angular-animate": "^1.6.8",
"angular-aria": "^1.6.8",
"angular-resource": "^1.6.8",
"angular-route": "^1.6.8",
"bootstrap": "4.0.0-beta.3",
"d3": "^3.5.16",
"font-awesome": "^4.7.0",
"jquery": "^3.4.1",
"lodash": "^4.17.13",
"popper.js": "^1.12.9",
"react": "^16.2.0",
"react-dom": "^16.2.1",
"systemjs": "^0.20.19",
"toastr": "^2.1.3",
"typeahead.js": "^0.11.1",
"zone.js": "^0.8.20"
},
"dependencies": {
"@angular/common": "^5.2.2",
"@angular/compiler": "^5.2.2",
"@angular/core": "^5.2.2",
"@angular/platform-browser": "^5.2.2",
"@angular/platform-browser-dynamic": "^5.2.2",
"@types/angular": "^1.6.40",
"@types/angular-animate": "^1.5.9",
"@types/angular-resource": "^1.5.14",
"@types/angular-route": "^1.3.4",
"@types/d3": "^3.5.34",
"@types/jquery": "^3.2.1",
"@types/lodash": "^4.14.85",
"@types/popper.js": "^1.11.0",
"@types/react": "^16.0.35",
"@types/react-dom": "^16.0.3",
"@types/systemjs": "^0.20.6",
"@types/toastr": "^2.1.30",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-cssmin": "^1.0.2",
"grunt-contrib-uglify": "^2.0.0",
"grunt-systemjs-builder": "^1.0.0",
"grunt-ts": "6.0.0-beta.17",
"grunt-tslint": "^5.0.1",
"moment": "^2.19.2",
"rxjs": "^5.5.6",
"tslint": "^5.9.1",
"tslint-microsoft-contrib": "^5.0.2",
"typescript": "^2.7.1"
}
}