-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.31 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
{
"name": "mercadillo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack -p",
"start": "webpack-dev-server",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint app/js/{,**/}*.js",
"lint:css": "stylelint 'app/css/**/*.scss'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matallo/mercadillo.git"
},
"author": "Carlos Matallín",
"license": "ISC",
"homepage": "https://matallo.github.io/mercadillo/",
"browserslist": "last 2 versions",
"dependencies": {
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.9",
"eslint": "^4.18.0",
"eslint-loader": "^1.9.0",
"extract-text-webpack-plugin": "^3.0.2",
"jest": "^22.4.0",
"node-sass": "^4.7.2",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.2",
"stylelint": "^9.0.0",
"stylelint-config-property-sort-order-smacss": "^3.0.1",
"stylelint-config-recommended-scss": "^3.0.0",
"stylelint-config-standard": "^18.1.0",
"stylelint-scss": "^2.3.0",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
}
}