forked from estacionckweb/ckweb-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 915 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
36
{
"//1": "describes your app and its dependencies",
"//2": "https://docs.npmjs.com/files/package.json",
"//3": "updating this file will download and update your packages",
"name": "ckweb",
"version": "0.0.1",
"description": "Simple landing page for ckweb.",
"main": "server.js",
"scripts": {
"start": "npm run watch | node server.js",
"watch": "watchify app/index.js -o public/bundle.js -v",
"build": "browserify app/index.js > public/bundle.js",
"deploy": "npm run build && gh-pages -d public"
},
"dependencies": {
"express": "^4.16.3",
"hydra-synth": "^1.0.17",
"raf-loop": "^1.1.3"
},
"engines": {
"node": "8.x"
},
"repository": {
"url": "https://glitch.com/edit/#!/hello-express"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express"
],
"devDependencies": {
"gh-pages": "^2.0.1",
"watchify": "^3.11.1"
}
}