forked from jscraftcamp/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 989 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
{
"name": "js-craftcamp-website",
"version": "1.0.0",
"description": "Website for the JSCC (jscraftcamp.org)",
"main": "index.js",
"engines": {
"node": ">= 6.6.0"
},
"dependencies": {
},
"devDependencies": {
"browser-sync": "^2.18.7",
"hamjest": "^2.13.0",
"harp": "^0.23.0",
"hashcode": "^1.0.3",
"mocha": "^3.0.2",
"recursive-readdir-sync": "^1.0.6"
},
"scripts": {
"prebuild": "mkdir -p ./dist",
"build": "harp compile ./src ./dist; cp CNAME dist/; npm run 'build:participants.json'",
"build:participants.json": "node scripts/concat-json.js ./participants dist/participants.json; cp ./dist/participants.json ./src/",
"start": "harp server ./src & browser-sync start --proxy 'localhost:9000' --files 'src/**/*.ejs, src/**/*.css', src/**/*.js",
"test": "mocha test"
},
"author": "David Losert <[email protected]>",
"license": "MIT",
"repository": "https://github.com/jscraftcamp/website.git"
}