-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.38 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
{
"name": "interactive-menu",
"version": "1.0.0",
"description": "Simple restaurant page with food menu to add to cart",
"main": "index.js",
"scripts": {
"dev": "lite-server",
"preserve": "npm run build",
"build:js": "browserify src/js/index.js -d -t babelify -o build/bundle.js",
"watch:js": "watchify src/js/index.js -d -v -t babelify -o build/bundle.js",
"build:scss": "node-sass src/scss/styles.scss --output build --source-map-embed --source-map-contents",
"watch:scss": "npm run build:scss -- --watch",
"build": "npm run build:js && npm run build:scss",
"serve": "concurrently \"npm run watch:js --& > /dev/null 2>&1\" \"npm run watch:scss --& > /dev/null 2>&1\" \"lite-server\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/SurendraVidiyala/food-menu.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SurendraVidiyala/food-menu/issues"
},
"homepage": "https://github.com/SurendraVidiyala/food-menu#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"bulma": "0.0.12",
"lite-server": "^2.3.0",
"node-sass": "^4.5.3",
"watchify": "^3.9.0"
}
}