-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
49
50
51
52
53
{
"name": "www.andykahn.net",
"version": "1.1.0",
"description": "Andy Kahn portfolio",
"main": "index.js",
"license": "MIT",
"scripts": {
"lint": "npm run lint:server && npm run lint:client",
"lint:server": "jshint --config .jshintrc-server index.js routes services data",
"lint:client": "jshint --config .jshintrc-client client-js",
"test": "npm run lint",
"start": "forever -m --minUptime 5000 --spinSleepTime 5000 index.js",
"start:dev": "run-p devserver build:js:watch",
"devserver": "nodemon -e js,hbs,md,json index.js",
"optimize": "uglifyjs -c -o public/js/index.js -- public/js/index.js",
"build:js": "browserify client-js/index.js > public/js/index.js",
"build:js:watch": "watch 'build:js' client-js",
"build": "npm run build:js",
"postinstall": "npm run build && npm run optimize"
},
"engines": {
"npm": ">=5",
"node": ">=8.10.0"
},
"repository": {
"type": "git",
"url": "git://github.com/akahn87/portfolio.git"
},
"dependencies": {
"ampersand-dom": "^1.2.7",
"dotenv": "^6.2.0",
"forever": "^0.15.3",
"handlebars": "^4.0.12",
"hapi": "^17.8.1",
"inert": "^5.1.2",
"markdown": "^0.5.0",
"moment": "^2.8.4",
"node-fetch": "^2.3.0",
"request": "^2.51.0",
"twit": "^2.2.11",
"twitter-text": "^3.0.0",
"vision": "^5.4.4",
"xhr": "^2.0.0"
},
"devDependencies": {
"browserify": "^16.2.3",
"jshint": "^2.9.7",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"uglify-js": "^3.4.9",
"watch": "^1.0.2"
}
}