This repository has been archived by the owner on Aug 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.53 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
{
"name": "lunchup",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/connor-baer/lunchup.git"
},
"author": "Connor Baer",
"license": "ISC",
"bugs": {
"url": "https://github.com/connor-baer/lunchup/issues"
},
"homepage": "https://github.com/connor-baer/lunchup#readme",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.js",
"clean": "rm -rf ./dist",
"deploy": "now",
"dev": "npm run clean && NODE_ENV=dev webpack --config webpack.config.js --display-error-details",
"fix": "npm run fix:prettier; npm run fix:eslint",
"fix:eslint": "eslint --fix --quiet \"server/**/*.js\"",
"fix:prettier": "prettier --config prettier.config.js --write \"server/**/*.js\"",
"precommit": "lint-staged",
"start": "NODE_ENV=production node dist/app.js",
"test": "npm run test:lint --silent && npm run test:unit --silent",
"test:lint": "eslint --cache --quiet server/**/*.js",
"test:lint:watch": "onchange \"**/**/*.js\" -- npm run test:lint",
"test:unit": "jest",
"test:unit:watch": "jest --watch"
},
"lint-staged": {
"*.js": [
"npm run fix:prettier",
"git add"
]
},
"dependencies": {
"@slack/client": "^3.14.2",
"async": "^2.6.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-runtime": "^6.26.0",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"ladda-cache": "^0.1.4",
"ladda-logger": "^0.2.1",
"lodash": "^4.17.4",
"moment": "^2.19.2",
"monk": "^6.0.5",
"morgan": "^1.9.0",
"request": "^2.83.0",
"start-server-webpack-plugin": "^2.2.0",
"twig": "^1.10.5",
"utf-8-validate": "^3.0.4",
"webpack": "^3.8.1",
"webpack-node-externals": "^1.6.0",
"winston": "^2.4.0"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-config-prettier": "^2.7.0",
"eslint-formatter-pretty": "^1.1.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.3.1",
"husky": "^0.13.4",
"jest": "^21.2.1",
"lint-staged": "^3.6.0",
"onchange": "^3.2.1",
"prettier": "^1.8.2",
"webpack-dev-server": "^2.9.4"
}
}