-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.37 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
{
"name": "prezzo-api",
"version": "1.0.0",
"description": "Official Prezzo.io API",
"main": "node_modules/alfred/app.js",
"scripts": {
"dev": "alfred --PORT 5000",
"clean": "rm -rf build && mkdir build",
"build-babel": "./node_modules/.bin/babel --source-maps=inline -d ./build ./ -s --ignore node_modules",
"build": "npm run clean && npm run build-babel && cp -R config build/config && cp -R bin build/bin && cp -R node_modules build/node_modules && cd build && grunt doc",
"start": "npm run build && cd build && alfred production",
"test": "npm run build && cd build && NODE_ENV=test grunt",
"doc": "npm run build && cd build && grunt doc",
"doc:api": "npm run build && cd build && grunt doc:api",
"doc:models": "npm run build && cd build && grunt doc:models",
"postinstall": "patch-package",
"deploy": "git push origin master && git push team master && git push heroku master"
},
"repository": "git@github.com:odotan/prezzo-api.git",
"author": "ishmaelthedestroyer",
"license": "n/a",
"private": true,
"dependencies": {
"alfred": "git://github.com/ishmaelthedestroyer/alfred#alfred",
"babel-plugin-transform-runtime": "^6.23.0",
"braintree": "^2.12.0",
"cities": "^1.1.2",
"crypto-js": "^3.1.9-1",
"geocoder": "^0.2.3",
"grunt-cli": "0.1.13",
"grunt": "~0.4.5",
"https-proxy-agent": "^2.2.1",
"mongoose": "^5.1.0",
"node-fetch": "^2.1.2",
"q": "^1.5.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"eslint-watch": "^3.1.4",
"flow-bin": "^0.72.0",
"flow-typed": "^2.4.0",
"grunt-bump": "^0.7.0",
"grunt-ctrllr": "^0.1.16",
"grunt-jasmine-node": "^0.3.1",
"grunt-jsdoc": "^0.5.8",
"grunt-release": "^0.13.0",
"grunt-shell": "^1.1.2",
"grunt-todos": "^0.3.0",
"lint-staged": "^7.1.0",
"load-grunt-tasks": "^3.1.0",
"patch-package": "^5.1.1",
"postinstall-postinstall": "^1.0.0",
"prettier": "^1.12.1"
}
}