-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "crumb-master",
"version": "1.0.0",
"description": "agile planning poker",
"author": "",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build:watch": "nodemon --watch src --exec \"env-cmd .env vue-cli-service build\" --ext scss,js,vue",
"clean-redis": "node bin/cleanRedis.js",
"dev": "concurrently \"npm run build:watch\" \"env-cmd .env npm start\"",
"heroku-postbuild": "npm run build",
"heroku:init": "heroku git:remote -a crumb-master",
"publish": "git push heroku master",
"publish:staging": "git push staging develop:master",
"start": "node index.js",
"test": "echo \"TESTS??? We don't need no stinkin' tests!\" && exit 1"
},
"dependencies": {
"axios": "^0.18.0",
"bluebird": "^3.5.3",
"bootstrap": "^4.3.1",
"express": "^4.16.4",
"lodash-es": "^4.17.11",
"redis": "^2.8.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"to-case": "^2.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.7.2",
"@vue/cli-plugin-babel": "^3.4.0",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-service": "^3.4.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"babel-eslint": "^10.0.1",
"concurrently": "^4.1.0",
"env-cmd": "^8.0.2",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-vue": "^5.0.0",
"nodemon": "^1.18.10",
"sass": "^1.58.3",
"sass-lint": "^1.12.1",
"sass-loader": "^7.2.0",
"serve-static": "^1.13.2",
"vue": "^2.6.6",
"vue-router": "^3.0.2",
"vue-template-compiler": "^2.5.21"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/airbnb"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"bugs": {
"url": "https://github.com/swcolegrove/crumb-master/issues"
},
"homepage": "https://github.com/swcolegrove/crumb-master#readme",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/swcolegrove/crumb-master.git"
}
}