-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 959 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 959 Bytes
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
{
"name": "joel-doyle-website",
"version": "0.1.4",
"description": "The personal website of me, Joel Doyle.",
"main": "index.js",
"scripts": {
"start": "npm run dist && node index.js",
"copy:views": "mkdir -p public && cp -R src/**.html ./public/",
"less": "mkdir -p public/css && lessc ./src/less/style.less ./public/css/style.css",
"browserify": "browserify ./src/app.js -o ./public/bundle.js",
"dist": "npm run copy:views && npm run less && npm run browserify",
"watch": "watch 'npm run dist' ./src"
},
"dependencies": {
"angular": "^1.4.5",
"bootstrap": "^3.3.5",
"browserify": "^11.0.1",
"ejs": "^2.3.1",
"express": "~4.9.x"
},
"engines": {
"node": "0.12.2"
},
"repository": {
"type": "git"
},
"keywords": [
"node",
"heroku",
"express"
],
"license": "MIT",
"devDependencies": {
"browserify": "^11.0.1",
"less": "^2.5.1",
"watch": "^0.16.0"
}
}