-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 1010 Bytes
/
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": "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 <pnidem@gmail.com>",
"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.6.2",
"express": "^4.15.0",
"marko": "^4.0.0-rc.24",
"serve-static": "^1.12.0"
},
"devDependencies": {
"envify": "^4.0.0",
"markoify": "^2.2.2",
"rollup": "^0.41.4",
"rollup-plugin-browserify-transform": "^0.1.0",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0"
}
}