-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
62 lines (62 loc) · 1.85 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
{
"name": "webpack.vote",
"version": "0.3.0",
"description": "An application for casting votes on new webpack features and fixes.",
"main": "dist/vote.bundle.js",
"scripts": {
"start": "webpack-dev-server --config webpack.dev.babel.js --env.dev",
"watch": "webpack --config webpack.dist.babel.js --watch",
"build": "webpack --config webpack.dist.babel.js",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webpack-contrib/voting-app.git"
},
"keywords": [
"webpack",
"vote",
"voting"
],
"author": "Greg Venech",
"license": "ISC",
"bugs": {
"url": "https://github.com/webpack-contrib/voting-app/issues"
},
"homepage": "https://github.com/webpack-contrib/voting-app#readme",
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.24.1",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.0",
"cssnano": "^4.1.10",
"eslint": "^4.19.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-react": "^7.5.1",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.0.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^2.1.6",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"sass-loader": "^6.0.3",
"standard-version": "^4.2.0",
"style-loader": "^1.1.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"react-textarea-autosize": "^5.2.1",
"uuid": "^3.1.0"
}
}