forked from marko-js-samples/marko-rollup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "marko-rollup",
"version": "1.0.0",
"description": "Sample app: Marko + Rollup",
"main": "server.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"build-prod": "NODE_ENV=production rollup -c rollup.config.js",
"start": "npm run build && node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/marko-js-samples/marko-rollup.git"
},
"author": "Patrick Steele-idem <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/marko-js-samples/marko-rollup/issues"
},
"homepage": "https://github.com/marko-js-samples/marko-rollup",
"dependencies": {
"compression": "^1.7.4",
"express": "^4.17.1",
"marko": "^4.18.24",
"serve-static": "^1.14.1"
},
"devDependencies": {
"@marko/rollup": "^2.0.1",
"envify": "^4.0.0",
"markoify": "^2.2.2",
"rollup": "^1.26.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-browserify-transform": "^0.1.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
}
}