-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 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
{
"name": "marko-webpack",
"description": "Sample app that demonstrates the power of building UI components using Marko and Webpack",
"version": "1.0.0",
"author": "Patrick Steele-idem <pnidem@gmail.com>",
"bugs": {
"url": "https://github.com/marko-js-samples/marko-webpack/issues"
},
"dependencies": {
"compression": "^1.7.4",
"express": "^4.17.1",
"marked": "^0.7.0",
"marko": "^4.18.10",
"purecss": "^1.0.1",
"raptor-pubsub": "^1.0.5",
"raptor-util": "^3.1.0",
"serve-static": "^1.14.1",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@marko/webpack": "^1.2.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.0.0",
"file-loader": "^4.0.0",
"ignore-emit-webpack-plugin": "^2.0.2",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"spawn-server-webpack-plugin": "^4.0.0",
"svg-url-loader": "^3.0.0",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"homepage": "https://github.com/marko-js-samples/marko-webpack",
"license": "MIT",
"main": "dist/server/main.js",
"repository": {
"type": "git",
"url": "https://github.com/marko-js-samples/marko-webpack.git"
},
"scripts": {
"build": "NODE_ENV=production webpack --progress",
"start:dev": "webpack-dev-server",
"start": "NODE_ENV=production node dist/server/main.js"
}
}