-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "jspress",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"prebuild": "node bin/move-assets.js",
"build": "npm run build:js && npm run build:sass",
"build:js": "browserify src/js/index.js -o dist/js/app.js",
"build:sass": "node-sass --include-path=$(node bin/sass-paths.js) src/sass -o dist/css",
"watch": "npm run watch:js & npm run watch:sass & npm run livereload",
"watch:js": "nodemon --watch 'src/js' --exec 'npm run build:js'",
"watch:sass": "npm run build:sass -- --watch src/sass/**/*",
"livereload": "livereload dist",
"start": "npm run build && nodemon server & npm run watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.2",
"bourbon": "^4.2.7",
"bourbon-neat": "^1.8.0",
"deep-diff": "^0.3.4",
"express": "^4.14.0",
"font-awesome": "^4.7.0",
"jquery": "^3.1.1",
"marked": "^0.3.6",
"method-override": "^2.3.6",
"rx": "^4.1.0",
"snabbdom": "^0.5.4",
"superagent": "^2.3.0",
"to-markdown": "^3.0.3"
},
"devDependencies": {
"browserify": "^13.1.1",
"eslint": "^3.7.1",
"eslint-config-google": "^0.6.0",
"fs-extra": "^0.30.0",
"livereload": "^0.6.0",
"node-sass": "^3.10.1",
"nodemon": "^1.11.0"
}
}