-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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
{
"name": "@garajsepeti/ambar",
"version": "1.0.0",
"private": true,
"license": "proprietary",
"scripts": {
"start": "yarn updatedb && node src/server/server.js",
"dev": "supervisor src/server/server.js | bunyan",
"build": "rollup -c src/sdk/rollup.config.js",
"watch": "yarn build -w",
"updatedb": "bin/geolite2",
"heroku-postbuild":
"yarn build && yarn install --production --ignore-scripts --prefer-offline && yarn updatedb",
"precommit": "lint-staged"
},
"dependencies": {
"@google-cloud/datastore": "^1.3.3",
"body-parser": "^1.18.2",
"bunyan": "^1.8.12",
"bunyan-middleware": "^0.8.0",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"maxmind": "^2.4.0",
"micromatch": "^3.1.5",
"ua-parser-js": "^0.7.17"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-inline-environment-variables": "^0.3.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "1.11.1",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-butternut": "^0.1.0",
"supervisor": "^0.12.0"
},
"lint-staged": {
"*.{js,json,css}": ["prettier --write", "git add"]
},
"prettier": {
"singleQuote": true,
"jsxBracketSameLine": true
}
}