-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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": "terry-sb",
"version": "0.0.0",
"description": "Soundboard",
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/wristuzi/terry-sb.git"
},
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/wristuzi/terry-sb/issues"
},
"dependencies": {
"browserify": "~9.0.3",
"express": "~4.12.2",
"jade": "~1.9.2",
"jquery": "^2.1.3",
"less": "^2.4.0"
},
"devDependencies": {
"live-reload": "~1.1.0",
"watch": "^0.14.0"
},
"scripts": {
"test": "mocha test/*.js",
"build:js": ".\\node_modules\\.bin\\browserify src/main.js > public/js/bundle.js",
"watch:js": "watch 'npm run build:js' src/",
"build:css": ".\\node_modules\\.bin\\lessc styles/styles.less public/css/styles.css",
"watch:css": "watch 'npm run build:css' styles/",
"build": "npm run build:js && npm run build:css",
"build:watch": "npm run watch:js & npm run watch:css & NODE_ENV=dev node app.js & npm run live-reload",
"live-reload": ".\\node_modules\\.bin\\live-reload --port 9091 public/",
"postinstall": "npm run build"
}
}