-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.22 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
{
"name": "itemslider",
"author": "Valerio Pisapia <[email protected]>",
"version": "1.0.0",
"license": "MIT",
"watch": true,
"main": "src/index.js",
"dependencies": {
"@material-ui/core": "^3.2.1",
"@material-ui/icons": "^3.0.1",
"axios": "^0.18.0",
"express": "^4.16.3",
"postinstall-build": "^5.0.3",
"precommit-hook": "^3.0.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-swipeable": "^4.3.0",
"react-switch": "^3.0.4",
"styled-components": "^3.4.9"
},
"devDependencies": {
"ajv": "^6.3.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"cssnano": "^3.10.0",
"dotenv": "^6.1.0",
"eslint": "^4.19.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.10.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"favicons-webpack-plugin": "0.0.8",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.1.0",
"http-server": "^0.11.1",
"inquirer": "^5.1.0",
"node-sass": "^4.8.3",
"optimize-css-assets-webpack-plugin": "^4.0.0",
"postcss-loader": "^2.1.3",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.7",
"source-map-loader": "^0.2.3",
"style-loader": "^0.20.3",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.0.1",
"webpack": "4.19.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.1",
"webpack-merge": "^4.1.2"
},
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js --mode development",
"build": "webpack --config webpack.prod.js --mode production",
"preview": "npm run build && http-server public",
"watch": "webpack --watch",
"deploy": "firebase deploy --only=hosting",
"lint": "./node_modules/.bin/eslint ./src",
"validate": "npm ls"
},
"pre-commit": []
}