-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.88 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
{
"name": "mermaid-collect-app",
"version": "1.8.1",
"description": "MERMAID coral reef data collection app",
"main": "index.html",
"private": true,
"scripts": {
"start": "gulp local",
"dev": "gulp dev",
"prod": "gulp prod",
"jshint": "jshint -c .jshintrc --exclude-path .jshintignore ./src",
"lint": "npm run jshint",
"prettier": "prettier --write 'src/**/*.js' '!src/build/**'",
"test": "karma start"
},
"engines": {
"node": ">=8.9.0 <9.0",
"npm": "~6.4.1"
},
"author": "MERMAID",
"license": "MERMAID",
"devDependencies": {
"angular-mocks": "^1.4.14",
"bower": "^1.8.8",
"event-stream": "~3.3.1",
"file-exists": "^5.0.1",
"gulp": "^4.0.0",
"gulp-angular-templatecache": "^1.7.0",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.0",
"gulp-connect": "^2.2.0",
"gulp-jshint": "^2.1.0",
"gulp-livereload": "^3.8.1",
"gulp-ng-annotate": "^1.0.0",
"gulp-replace": "^0.5.4",
"gulp-rev-all": "^0.9.7",
"gulp-rev-delete-original": "^0.2.2",
"gulp-sequence": "^0.4.6",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.8",
"husky": "^1.1.3",
"jasmine-core": "^3.3.0",
"jshint": "^2.12.0",
"jshint-stylish": "^2.2.1",
"karma": "^6.3.16",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-spec-reporter": "0.0.32",
"lint-staged": "^8.1.0",
"lodash": "^4.17.21",
"prettier": "^1.15.3",
"sw-precache": "^5.2.1",
"angular-file-saver": "^1.1.3"
},
"dependencies": {
"angular-auth0": "^3.0.4",
"leaflet": "^0.7.1",
"leaflet-gesture-handling": "^1.1.8",
"mapbox-gl": "^1.12.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}