This repository has been archived by the owner on Jan 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
127 lines (127 loc) · 3.43 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "heighliner",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"commit": "git-cz",
"lint-fix": "eslint ./src --fix",
"lint": "eslint ./src",
"start": "NODE_ENV=development webpack --watch & ./node_modules/.bin/nodemon ./lib/server.js",
"build": "NODE_ENV=development webpack",
"build:production": "NODE_ENV=production webpack",
"danger": "danger run --verbose"
},
"author": "NewSpring",
"jest": {
"moduleFileExtensions": [
"js",
"json"
],
"roots": [
"./src"
],
"collectCoverageFrom": [
"src/**/*.js"
],
"testRegex": "./__tests__/.*\\.(js)$",
"testEnvironment": "node",
"collectCoverage": false
},
"license": "ISC",
"dependencies": {
"@google/maps": "^0.5.5",
"apollo-engine": "^0.5.6",
"apollo-server-express": "^1.1.2",
"bcrypt": "^1.0.3",
"body-parser": "^1.14.2",
"bull": "^2.0.0",
"connect-datadog": "0.0.6",
"cors": "^2.7.1",
"credit-card-type": "^5.0.1",
"datadog-metrics": "^0.3.0",
"dataloader": "^1.1.0",
"express": "^4.13.3",
"geo-from-ip": "^1.0.6",
"google-geocoding": "^0.1.7",
"graphql": "^0.11.3",
"graphql-date": "^1.0.3",
"graphql-tools": "^2.3.0",
"html-pdf": "^2.1.0",
"ical": "^0.5.0",
"isomorphic-fetch": "^2.2.1",
"liquid-node": "^3.0.0",
"lodash": "^4.15.0",
"meteor-random": "^0.0.3",
"moment": "^2.13.0",
"mongoose": "^4.5.8",
"morgan": "^1.7.0",
"mssql-geoparser": "0.0.1",
"mysql": "^2.10.2",
"node-mssql": "0.0.1",
"node-uuid": "^1.4.7",
"optics-agent": "^1.1.6",
"phantomjs-prebuilt": "^2.1.14",
"php-unserialize": "0.0.1",
"promise-timeout": "^1.0.0",
"ramda": "^0.23.0",
"raven": "^0.12.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"redis": "^2.4.2",
"redis-commands": "github:newspring/redis-commands",
"sequelize": "^3.24.0",
"striptags": "^3.1.0",
"tedious": "^1.14.0",
"to-pascal-case": "^1.0.0",
"to-snake-case": "^1.0.0",
"truncate": "^2.0.0",
"xml2js": "^0.4.17"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.21.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.7",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.5.0",
"casual": "1.5.3",
"commitizen": "^2.8.5",
"coveralls": "^2.11.9",
"danger": "^0.15.0",
"eslint": "^3.9.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-prettier": "^3.0.1",
"ghooks": "^1.2.3",
"graphql-tester": "0.0.4",
"jest": "^19.0.0",
"nodemon": "1.18.7",
"npm-install-webpack-plugin": "^4.0.5",
"prettier": "^1.15.3",
"react-test-renderer": "^15.4.1",
"redis-mock": "^0.16.0",
"webpack": "^3.6.0",
"webpack-config-utils": "^2.3.0",
"webpack-dashboard": "^1.0.0-7",
"webpack-dev-middleware": "^1.12.0",
"webpack-dotenv-plugin": "^2.0.2",
"webpack-hot-middleware": "^2.19.0",
"webpack-node-externals": "^1.6.0",
"word-wrap": "^1.1.0"
},
"config": {
"commitizen": {
"path": "./scripts/commit"
},
"ghooks": {
"pre-commit": "echo npm run lint"
}
}
}