-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.2 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
{
"name": "here-map-wrapper",
"version": "1.0.9",
"main": "build/index.js",
"homepage": "http://github.com/sendit-asia/here-map-wrapper-api",
"repository": "github:sendit-asia/here-map-wrapper-api",
"files": [
"build/"
],
"license": "MIT",
"scripts": {
"start": "npm run start-production",
"start-production": "npm run build && node build/index.js",
"start-dev": "DEBUG=koa*,worker,app* nodemon src/index.js --exec babel-node -e js",
"clean": "rm -rf build && mkdir build",
"build": "npm run clean && babel -d ./build ./src -s",
"test": "jest",
"lint": "eslint . --fix"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"flow-bin": "^0.72.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.1.0",
"mongodb-memory-server": "^1.7.3",
"nodemon": "^1.17.4",
"prettier": "^1.12.1"
},
"dependencies": {
"regenerator-runtime": "^0.11.1",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"@mapbox/polyline": "^1.0.0",
"axios": "^0.18.1",
"debug": "^3.1.0",
"dotenv": "^5.0.1",
"here-map-wrapper": "^1.0.1",
"jsontoxml": "^1.0.0",
"lodash": "^4.17.19",
"shortid": "^2.2.8",
"stack-trace": "^0.0.10",
"util": "^0.10.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}