-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "preview-generator",
"version": "1.0.0",
"description": "A landing page for creating IIS virtual directories and applications using NodeJS.",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js",
"start": "node index.js",
"build": "webpack --config webpack.build.config.js",
"watch": "webpack --config webpack.build.config.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/C-Rodg/IIS-Preview-Generator.git"
},
"keywords": [
"NodeJS",
"express",
"IIS"
],
"author": "C-Rodg",
"license": "MIT",
"bugs": {
"url": "https://github.com/C-Rodg/IIS-Preview-Generator/issues"
},
"homepage": "https://github.com/C-Rodg/IIS-Preview-Generator#readme",
"dependencies": {
"axios": "^0.17.1",
"express": "^4.16.2",
"node-cmd": "^3.0.0",
"react-toastify": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"style-loader": "^0.19.0",
"styled-components": "^2.2.4",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.5"
}
}