-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "landing-page-template",
"version": "1.0.0",
"description": "A simple landing page template",
"author": "Christoph von Gellhorn",
"license": "MIT",
"homepage": "https://github.com/cvgellhorn/landing-page-template",
"scripts": {
"dev": "NODE_ENV=dev webpack-dev-server --progress --config webpack.config.dev.js",
"build": "webpack -p --progress --config webpack.config.build.js"
},
"repository": {
"type": "git",
"url": "https://[email protected]/cvgellhorn/landing-page-template.git"
},
"dependencies": {
"debounce": "^1.0.2",
"mail-redactor": "^1.0.3",
"trianglify": "^1.1.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.3",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.2",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.4.5"
}
}