-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.27 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": "endfire",
"version": "0.0.1",
"description": "Endfire.io",
"main": "index.js",
"scripts": {
"deploy": "npm run build && divshot push",
"deploy:staging": "npm run build && divshot push staging",
"deploy:production": "npm run build && divshot push production",
"start": "npm run build && ss --port 3000",
"build": "npm run build:js && npm run build:less",
"build:js": "mkdirp public/assets/dist/js && babel js --out-dir public/assets/dist/js && uglifyjs public/assets/dist/js/main.js -o public/assets/dist/js/main.min.js",
"build:less": "mkdirp public/assets/dist/css && lessc less/main.less > public/assets/dist/css/main.css && cleancss public/assets/dist/css/main.css -o public/assets/dist/css/main.min.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/endfire/website.git"
},
"keywords": [
"endfire",
"full-stack"
],
"author": "Dylan Slack <[email protected]> (http://www.dylanslack.me)",
"license": "ISC",
"bugs": {
"url": "https://github.com/endfire/website/issues"
},
"homepage": "https://www.endfire.io",
"devDependencies": {
"babel": "^5.8.5",
"clean-css": "^3.3.6",
"less": "^2.5.1",
"mkdirp": "^0.5.1",
"superstatic": "^2.2.1",
"uglify-js": "^2.4.24"
}
}