-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.99 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
{
"name": "beer-pwa",
"version": "1.0.0",
"description": "ibeer for 2018",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"babel-node": "babel-node --presets=/*a*/ --ignore='foo|bar|baz'",
"sw": "sw-precache --config sw-config.js && cp service-worker.js public",
"eslint": "eslint **/*.js",
"openssl": "cd ./sslcert && openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 365",
"dev": "nodemon -e js,html,pug,css,ejs server.js",
"pm2": "set NODE_ENV=production&&pm2 start server.js -i 0 --attach && sudo env PATH=$PATH:/usr/local/bin pm2 startup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samueljim/beer-pwa.git"
},
"keywords": [
"beer",
"pwa"
],
"author": "samuel henry",
"license": "ISC",
"bugs": {
"url": "https://github.com/samueljim/beer-pwa/issues"
},
"eslintConfig": {
"extends": "plugin:prettier/recommended",
"rules": {
"prettier/prettier": "error",
"comma-dangle": 0,
"linebreak-style": 0,
"consistent-return": 0,
"no-param-reassign": 0,
"no-underscore-dangle": 0,
"no-shadow": 0,
"no-console": 0,
"no-plusplus": 0,
"no-unused-expressions": 0,
"chai-friendly/no-unused-expressions": 2
},
"env": {
"jasmine": true,
"mocha": true,
"node": true
},
"plugins": [
"chai-friendly",
"prettier"
]
},
"homepage": "https://iwantbeer.now.sh",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chalk": "^2.4.1",
"compression": "^1.7.3",
"eslint": "^5.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"express": "^4.16.3",
"express-device": "^0.4.2",
"morgan": "^1.9.0",
"node-gyp": "^3.7.0",
"nodemon": "^1.5.19",
"pm2": "^3.0.3",
"pug": "^2.0.3",
"shortid": "^2.2.12",
"sw-precache": "^5.2.1"
}
}