-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.96 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "tent",
"version": "0.4.5",
"description": "Superstar admin interface with markdown preview",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/arturi/tent.git"
},
"bin": {
"tent": "server/index.js"
},
"dependencies": {
"body-parser": "^1.18.3",
"browser-sync": "^2.26.3",
"bundle-collapser": "^1.2.1",
"drag-drop": "^4.2.0",
"express": "^4.16.4",
"fastmatter": "^2.1.0",
"fs-extra": "^7.0.1",
"glob": "^7.1.2",
"hyperx": "^2.3.0",
"imagemin": "^6.1.0",
"imagemin-giflossy": "^5.1.10",
"imagemin-jpegtran": "^6.0.0",
"imagemin-pngquant": "^6.0.1",
"lodash": "^4.17.11",
"lodash.debounce": "^4.0.8",
"markdown-it": "^8.3.1",
"markdown-it-task-lists": "^2.1.1",
"mkdirp": "^0.5.1",
"multer": "^1.3.0",
"preact": "^8.2.7",
"sharp": "^0.21.1",
"shortid": "^2.2.8",
"template-css": "github:arturi/template-css",
"uglifyify": "^5.0.1",
"uppy": "^0.29.0",
"yargs": "^12.0.5"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"hyperxify": "^2.0.1",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"watchify": "^3.11.0"
},
"scripts": {
"build": "browserify -t hyperxify -t babelify -g uglifyify -p bundle-collapser/plugin client/index.js | uglifyjs > public/bundle.js",
"server": "node server/index.js --port=3360",
"watch:client": "watchify -t babelify client/index.js -o public/bundle.js -vd",
"watch:server": "nodemon --watch server/ server/index.js --port=3360",
"watch:browser-sync": "browser-sync start --proxy \"localhost:3360\" --port 3351 --files \"public/**\"",
"start:prod": "npm-run-all build server",
"start": "npm-run-all --parallel watch:client watch:server watch:browser-sync"
},
"keywords": [
"admin",
"static"
],
"author": "Artur Paikin",
"license": "MIT"
}