forked from galenmaly/lighterpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.02 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
{
"name": "lighterpack",
"version": "2.0.0",
"description": "LighterPack =========== LighterPack is a website to track the gear you take on adventures. It is still in Beta.",
"main": "app.js",
"scripts": {
"dev": "node app.js",
"start": "webpack-cli -p --config ./webpack.config.js && node app.js",
"build": "webpack-cli -p --config ./webpack.config.js",
"lint:css": "./node_modules/.bin/stylelint \"client/**/*.{scss,vue}\" --fix",
"lint:js": "./node_modules/.bin/eslint --ext .vue --ext .js ./ --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/galenmaly/lighterpack"
},
"author": "",
"license": "GPL-2.0",
"dependencies": {
"axios": "0.18.1",
"@babel/core": "7.3.4",
"babel-loader": "8.0.5",
"@babel/polyfill": "7.2.5",
"@babel/preset-env": "7.3.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"compression": "^1.7.3",
"config": "^1.21.0",
"cookie-parser": "^1.4.0",
"css-loader": "3.5.3",
"dragula": "^3.7.2",
"express": "^4.16.2",
"file-loader": "^0.9.0",
"formidable": "^1.0.17",
"lodash": "4.17.13",
"mailgun-js": "0.22.0",
"markdown": "^0.5.0",
"mini-css-extract-plugin": "0.6.0",
"mongojs": "^2.2.2",
"mustache": "^2.2.1",
"node.extend": "^1.1.5",
"request": "^2.67.0",
"sass": "1.26.8",
"sass-loader": "8.0.2",
"vue": "2.6.11",
"vue-color-picker-wheel": "0.4.3",
"vue-loader": "15.6.4",
"vue-router": "^3.0.1",
"vue-template-compiler": "2.6.11",
"vuex": "3.0.1",
"webpack": "4.27.1",
"whatwg-fetch": "^2.0.3",
"nanoid": "2.0.3"
},
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-vue": "5.2.2",
"stylelint": "10.0.1",
"stylelint-config-standard": "18.3.0",
"stylelint-order": "2.2.1",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "3.4.0",
"webpack-dev-server": "3.1.14",
"webpack-hot-middleware": "2.24.3"
}
}