-
-
Notifications
You must be signed in to change notification settings - Fork 507
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.25 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.25 KB
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
{
"name": "exceptionless",
"private": true,
"scripts": {
"build": "npx grunt build",
"serve": "npx grunt serve",
"prod-serve": "cross-env ASPNETCORE_URLS=https://api.exceptionless.io npx grunt serve",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"prettier": "prettier . --write --ignore-unknown",
"prettier:check": "prettier . --check --ignore-unknown",
"prettier:staged": "prettier --write --ignore-unknown"
},
"devDependencies": {
"cross-env": "7.0.3",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"grunt": "1.6.1",
"grunt-angular-templates": "1.2.0",
"grunt-browser-output": "1.0.3",
"grunt-cache-bust": "1.7.0",
"grunt-connect-proxy2": "2.0.0",
"grunt-contrib-clean": "2.0.1",
"grunt-contrib-concat": "2.1.0",
"grunt-contrib-connect": "^4.0.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-cssmin": "5.0.0",
"grunt-contrib-htmlmin": "3.1.0",
"grunt-contrib-less": "3.0.0",
"grunt-contrib-uglify": "5.2.2",
"grunt-contrib-watch": "1.1.0",
"grunt-dom-munger": "^4.0.0",
"grunt-eslint": "^24.3.0",
"grunt-html-angular-validate": "^0.6.1",
"grunt-ng-annotate": "^4.0.0",
"grunt-replace": "^2.0.2",
"load-grunt-config": "^4.0.1",
"prettier": "^3.0.0"
},
"dependencies": {
"angular": "1.8.3",
"angular-animate": "1.8.3",
"angular-clipboard": "1.7.0",
"angular-dialog-service": "5.3.0",
"angular-filter": "0.5.17",
"angular-gravatar": "0.4.2",
"angular-hotkeys": "1.7.0",
"angular-input-match": "0.0.3",
"angular-intercom": "2.1.1",
"angular-loading-bar": "0.9.0",
"angular-locker": "2.0.5",
"angular-messages": "1.8.3",
"angular-mocks": "1.8.3",
"angular-payments": "*",
"angular-resource": "1.8.3",
"angular-sanitize": "1.8.3",
"angular-stripe": "5.0.0",
"angular-translate": "2.19.0",
"angular-translate-loader-static-files": "2.19.0",
"angular-ui-bootstrap": "2.5.6",
"angular-ui-router": "0.4.2",
"angular-xeditable": "0.10.2",
"angularjs-toaster": "3.0.0",
"angulartics": "1.4.0",
"animate.css": "4.1.1",
"bootstrap": "3.4.1",
"bootstrap-daterangepicker": "2.1.27",
"checklist-model": "1.0.0",
"d3": "3.5.17",
"exceptionless": "1.6.4",
"font-awesome": "4.7.0",
"handlebars": "4.7.7",
"jquery": "3.7.0",
"less": "4.1.3",
"li": "1.3.0",
"lodash": "4.17.23",
"moment": "2.29.4",
"mousetrap": "1.6.5",
"ng-debounce": "1.0.1",
"ng-filters": "1.3.1",
"query-string": "4.2.3",
"restangular": "1.6.1",
"rickshaw": "1.7.1",
"satellizer": "0.15.5",
"trunk8": "0.0.1",
"twix": "1.3.0"
},
"overrides": {
"angular": "1.8.3"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"trailingComma": "es5"
}
}