forked from jluccisano/webpack-es6-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.26 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
{
"name": "textwallpaper.online",
"title": "TextWallpaper.Online",
"version": "1.0.0",
"author": "Eralp Karaduman <[email protected]> (https://eralpkaraduman.com)",
"description": "Create plain text solid color wallpapers!",
"license": "MIT",
"keywords": [
"webpack",
"es6"
],
"bugs": {
"url": "https://github.com/eralpkaraduman/text-wallpaper-generator/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/eralpkaraduman/text-wallpaper-generator.git"
},
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --config conf/webpack.dev.js",
"build": "webpack --env=prod --progress --profile --colors",
"lint": "eslint ./src/**.js",
"coverage": "jest --coverage --config=conf/jest.config.js",
"test": "jest --config=conf/jest.config.js",
"test:watch": "jest --watch"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.1.0",
"babel-cli": "^6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.1.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "0.1.16",
"css-loader": "^0.28.11",
"empty": "^0.10.1",
"eslint": "4.5.0",
"eslint-loader": "1.9.0",
"eslint-plugin-flowtype": "^2.50.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"flow-bin": "^0.74.0",
"flow-webpack-plugin": "^1.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "2.30.1",
"jest": "20.0.4",
"s3-upload": "^0.1.0",
"sass": "^1.81.0",
"sass-loader": "^7.0.3",
"url-loader": "^1.0.1",
"webpack": "3.5.5",
"webpack-dev-server": "2.7.1",
"webpack-merge": "4.1.0",
"webpack-pwa-manifest": "^3.6.2"
},
"dependencies": {
"autosize": "^4.0.2",
"blob.js": "^1.0.1",
"flexboxgrid": "^6.3.1",
"html2canvas": "^1.4.1",
"normalize.css": "^8.0.0",
"smoothscroll-polyfill": "^0.4.3",
"text-mask-addons": "^3.7.2",
"vanilla-text-mask": "^5.1.1"
},
"engines": {
"yarn": "use npm!"
}
}