-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
91 lines (91 loc) · 2.39 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
82
83
84
85
86
87
88
89
90
91
{
"name": "trip-o-meter-web",
"version": "1.0.0",
"engines": {
"node": "6.11.1",
"npm": "4.1.2"
},
"description": "API for fetching fuel prices and web version of trip-o-meter",
"keywords": [
"Fuel",
"api",
"rest",
"node",
"express"
],
"author": "Raghu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:RaghuChandrasekaran/trip-o-meter-web.git"
},
"main": "src/index.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest --forceExit",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:dev": "cross-env NODE_ENV=development backpack dev",
"start:prod": "cross-env NODE_ENV=production backpack build && node ./build/main.js",
"heroku-start": "npm run docs && npm start",
"docs": "apidoc -i src/ -o docs/ && cp -rf res/favicon.ico docs/img",
"build": "backpack build"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js}",
"!src/index.js"
],
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"globals": {
"__DEV__": true
}
},
"apidoc": {
"name": "Trip-O-Meter",
"version": "1.0.0",
"description": "API used in Trip-O-Meter app",
"title": "Trip-O-Meter",
"url": "https://tripometer.herokuapp.com",
"sampleUrl": "https://tripometerdev.herokuapp.com",
"header": {
"title": "Getting Started",
"filename": "res/header.md"
},
"template": {
"withCompare": true
}
},
"dependencies": {
"apidoc": "^0.17.5",
"axios": "^0.15.3",
"backpack-core": "^0.2.0",
"body-parser": "^1.16.1",
"cors": "^2.8.1",
"cron": "^1.2.1",
"cross-env": "^3.1.4",
"express": "^4.14.0",
"if-env": "^1.0.0",
"morgan": "^1.8.1",
"uuid": "^3.0.1",
"winston": "^2.3.1",
"xml2js": "^0.4.17"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-plugin-module-resolver": "^2.5.0",
"coveralls": "^2.11.15",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-loader": "^1.6.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"jest-cli": "^19.0.2",
"supertest": "^3.0.0"
}
}