-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "cafedev",
"version": "0.3.0",
"description": "CafeDev website",
"main": "source/index.js",
"scripts": {
"build": "node source/index.js --environment=production",
"build:dev": "node source/index.js --environment=development",
"dev": "npm-run-all --parallel watch server",
"server": "serve -p 10000 ./build",
"server:real": "serve -p 80 ./build",
"test": "npm run build",
"watch": "nodemon --watch source --watch assets/theme --watch articles -e js,json,md,pug,sass,scss source/index.js --environment=development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/perry-mitchell/cafedev.git"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/perry-mitchell/cafedev/issues"
},
"homepage": "https://github.com/perry-mitchell/cafedev#readme",
"private": true,
"devDependencies": {
"autoprefixer": "^6.3.6",
"chalk": "^1.1.3",
"clean-css": "^3.4.17",
"commander": "^2.9.0",
"easyimage": "^2.1.0",
"flightplan": "^0.6.14",
"fs-extra": "^0.30.0",
"highlight.js": "^9.8.0",
"marked": "^0.3.5",
"minimist": "^1.2.0",
"mkdir-p": "0.0.7",
"node-notifier": "^4.6.0",
"node-sass": "^3.7.0",
"nodemon": "^1.9.2",
"npm-run-all": "^2.3.0",
"postcss": "^5.0.21",
"prettyjson": "^1.1.3",
"prompt": "^1.0.0",
"pug": "^2.0.0-beta2",
"pygmentize-bundled": "^2.3.0",
"rimraf": "^2.5.2",
"serve": "^1.4.0",
"typeset": "^0.2.2",
"walk": "^2.3.9"
}
}