-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.22 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "weather-app-javascript",
"version": "1.0.0",
"description": "weather app using vanilla javascript",
"config": {
"port": 3010
},
"main": "app.js",
"scripts": {
"start": "npm run build && npm run server:create",
"now-start": "PORT=$npm_package_config_port node ./bin/www",
"now-build": "npm run build:css",
"open:website": "./node_modules/.bin/opn http://localhost:$(npm run env | grep \"^npm_package_config_port=\" | cut -d\"=\" -f 2)",
"server:create": "PORT=$npm_package_config_port ./node_modules/.bin/nodemon ./bin/www",
"prebuild": "./node_modules/.bin/rimraf public && mkdir public",
"build": "./node_modules/.bin/npm-run-all --parallel build:*",
"build:js": "./node_modules/.bin/browserify ./src/index.js > ./public/bundle.js -d",
"build:css": "./node_modules/.bin/node-sass --source-map true src/scss/main.scss public/style.css",
"watch": "npm-run-all --parallel watch:*",
"watch:js": "./node_modules/.bin/watchify ./src/index.js -o ./public/bundle.js",
"watch:css": "npm run build:css -- -w",
"dev": "./node_modules/.bin/npm-run-all --parallel server:create watch open:website",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "./node_modules/.bin/now -e API_KEY=@api_key"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FiF0o/weather-app-javascript.git"
},
"keywords": [
"weather",
"Ouezeur",
"Marv Luvvihini",
"app",
"javascript",
"api"
],
"author": "Jon Laz <jonathan.lazarini@wanadoo.fr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FiF0o/weather-app-javascript/issues"
},
"homepage": "https://github.com/FiF0o/weather-app-javascript#readme",
"dependencies": {
"body-parser": "1.16.1",
"browserify": "14.1.0",
"cookie-parser": "1.4.3",
"debug": "2.6.1",
"dotenv": "4.0.0",
"express": "4.14.1",
"http": "0.0.0",
"morgan": "1.8.1",
"node-fetch": "1.6.3",
"node-sass": "4.5.0",
"npm-run-all": "4.0.1",
"opn": "4.0.2",
"opn-cli": "3.1.0",
"path": "0.12.7",
"pug-cli": "1.0.0-alpha6",
"rimraf": "2.6.0",
"watchify": "3.9.0"
},
"devDependencies": {
"now": "4.5.8",
"prettyjson": "1.2.1"
}
}