-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.09 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
{
"name": "mondrian",
"version": "1.0.0",
"description": "Generate wallpapers inspired by art from Piet Mondrian",
"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 build",
"deploy": "npm run build && gh-pages -d build"
},
"keywords": [
"mondrian",
"art",
"layout",
"css-grid",
"es6",
"javascript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MauriceMahan/mondrian.git"
},
"bugs": {
"url": "https://github.com/MauriceMahan/mondrian/issues"
},
"homepage": "https://mauricemahan.github.io/mondrian/",
"author": "Maurice Mahan",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"autoprefixer": "^9.3.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.19",
"color-scheme": "^1.0.1",
"computed-style-to-inline-style": "^3.0.0",
"css-loader": "^0.28.11",
"cssnano": "^3.10.0",
"eslint": "^5.7.0",
"eslint-loader": "^2.1.1",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "^1.1.11",
"file-saver": "^2.0.0",
"gh-pages": "^2.0.1",
"glfx-es6": "https://github.com/MauriceMahan/glfx-es6/tarball/master",
"html-critical-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^3.1.0",
"http-server": "^0.11.1",
"interactjs": "^1.3.4",
"lit-html": "^0.14.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.10.0",
"optimize-css-assets-webpack-plugin": "^4.0.0",
"postcss-loader": "^2.1.3",
"rasterizehtml": "^1.3.0",
"sass-loader": "^6.0.7",
"source-map-loader": "^0.2.3",
"style-loader": "^0.20.3",
"url-loader": "^1.0.1",
"webpack": "^4.21.0",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.11"
},
"dependencies": {
"@babel/polyfill": "^7.0.0"
}
}