-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 965 Bytes
/
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
{
"name": "wdots-website",
"version": "0.0.1",
"description": "Web Devs of the Shire website",
"repository": "https://github.com/WDOTS/wdots-website",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && node index.js",
"lint": "node ./node_modules/eslint/bin/eslint.js .",
"dev": "npm run build && node ./node_modules/nodemon/bin/nodemon.js index.js",
"build": "rm -rf ./build && node ./bin/scss.js",
"watch": "npm run build && node ./node_modules/node-sass/bin/node-sass --watch ./styles --output ./build/css"
},
"author": "Simon Adcock",
"license": "ISC",
"dependencies": {
"debug": "^2.2.0",
"express": "^4.13.4",
"hogan.js": "^3.0.2",
"q": "^1.4.1",
"serve-static": "^1.10.2",
"yargs": "^3.32.0"
},
"devDependencies": {
"eslint": "^1.10.3",
"mkdirp": "^0.5.1",
"node-sass": "^3.4.2",
"nodemon": "^1.8.1"
}
}