-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 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
{
"name": "wallet-exchange",
"version": "1.0.0",
"repository": "git@github.com:djadriano/wallet-exchange.git",
"author": "Adriano Fernandes <djadrianof@gmail.com>",
"license": "MIT",
"engines": {
"node": ">= 8.4.0"
},
"scripts": {
"build": "NODE_ENV=production webpack --mode production --config ./config/webpack.config.js",
"dev": "NODE_ENV=development webpack-dev-server --mode development --config ./config/webpack.config.js",
"start": "yarn build && npx serve dist"
},
"lint-staged": {
"src/**/*.scss": [
"stylelint --syntax=scss --fix",
"git add"
],
"src/**/*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.0.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"clean-webpack-plugin": "2.0.1",
"css-loader": "2.1.1",
"eslint": "5.16.0",
"eslint-config-google": "0.12.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-compat": "3.1.1",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.4",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"husky": "1.3.1",
"lint-staged": "8.1.5",
"mini-css-extract-plugin": "0.6.0",
"node-sass": "4.11.0",
"prettier": "1.17.0",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-hot-loader": "4.8.4",
"sass-loader": "7.1.0",
"sass-mediaqueries": "1.6.1",
"style-loader": "0.23.1",
"stylelint": "10.0.1",
"stylelint-config-standard": "18.3.0",
"stylelint-order": "3.0.0",
"swiper": "4.5.0",
"terser-webpack-plugin": "^4.0.0",
"uglifyjs-webpack-plugin": "2.1.2",
"webpack": "4.30.0",
"webpack-cli": "3.3.0",
"webpack-dev-server": "3.3.1",
"webpack-merge": "4.2.1"
},
"dependencies": {
"@babel/polyfill": "7.4.3"
}
}