-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "NavExercise",
"description": "Exercise for candidates to complete where they will build a responsive nav driven from json",
"version": "1.0.0",
"authors": [
"Fernando Camargo <[email protected]>"
],
"licenses": [
{
"type": "GNU",
"url": "https://raw.githubusercontent.com/fernandocamargo/huge/master/LICENSE"
}
],
"homepage": "https://github.com/fernandocamargo/huge",
"bugs": {
"url": "https://github.com/fernandocamargo/huge/issues"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:css": "node-sass --include-path scss src/scss/main.scss public/styles/main.css",
"build:js": "webpack",
"build": "npm run build:css && npm run build:js",
"start": "npm run build && node ./bin/www"
},
"dependencies": {
"express": "~4.2.0",
"morgan": "~1.0.0"
},
"devDependencies": {
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"mocha": "^2.5.3",
"node-sass": "^3.7.0",
"webpack": "^1.13.1"
}
}