-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.79 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
89
90
91
92
93
94
95
96
97
{
"name": "evona",
"version": "1.0.0",
"description": "Evona & Nysense Online Store",
"main": "src/app.js",
"scripts": {
"bd": "mongod --dbpath data",
"dev": "NODE_ENV=development webpack-dev-server",
"build": "NODE_ENV=production webpack --watch --progress --color",
"server": "nodemon --watch server --exec babel-node -- server/index.js",
"lint:js": "eslint src --fix",
"lint:css": "stylelint './src/**/*.scss' --fix"
},
"pre-commit": ["lint:js", "lint:css"],
"eslintIgnore": ["webpack.config.babel.js", "postcss.config.js"],
"author": "Ilya Pashkov",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.5",
"cssnano": "^3.10.0",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.4.0",
"eslint-plugin-prettier": "^2.2.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"glob-all": "^3.1.0",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^3.3.1",
"img-loader": "^2.0.0",
"json-loader": "^0.5.7",
"jsonfile": "^3.0.1",
"morgan": "^1.8.2",
"node-sass": "^4.5.3",
"postcss": "^6.0.9",
"postcss-loader": "^2.0.6",
"pre-commit": "^1.2.2",
"precss": "^2.0.0",
"prettier-eslint": "^7.1.0",
"pug": "^2.0.0-rc.3",
"pug-loader": "^2.3.0",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"react-hot-loader": "^1.3.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"stylelint": "^8.0.0",
"svg-sprite-loader": "^3.2.3",
"svgo": "^0.7.2",
"svgo-loader": "^1.2.1",
"url-loader": "^0.5.9",
"vue-hot-reload-api": "^2.1.0",
"vue-loader": "^13.0.4",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.4.2",
"webpack": "^3.5.5",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-dev-server": "^2.7.1",
"webpack-hot-middleware": "^2.18.2",
"webpack-manifest-plugin": "^1.3.1",
"webpack-pwa-manifest": "^3.2.0",
"webpack-spritesmith": "^0.3.3",
"webpack-svgstore-plugin": "^4.0.1"
},
"dependencies": {
"alertifyjs": "^1.11.0",
"animate.css": "^3.5.2",
"async-mysql": "^1.0.1",
"body-parser": "^1.17.2",
"bootstrap": "4.0.0-beta",
"cors": "^2.8.4",
"express": "^4.15.4",
"firebase": "^4.3.0",
"forever": "^0.15.3",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"mongoose": "^4.11.10",
"mysql": "^2.14.1",
"nodemon": "^1.12.0",
"normalize.css": "^7.0.0",
"noty": "^3.1.2",
"vue": "^2.4.2",
"vue-router": "^2.7.0",
"vuex": "^2.3.1"
}
}