-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.31 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
{
"name": "@rloopteam/website",
"version": "3.0.0",
"private": true,
"description": "rloop.org",
"main": "index.js",
"dependencies": {
"nodemon": "^1.9.1"
},
"devDependencies": {
"concurrently": "^2.0.0",
"http-server": "^0.9.0",
"livereload": "^0.4.1",
"nodemon": "^1.9.1",
"nunjucks": "^2.3.0",
"shelljs": "^0.6.0",
"surge": "^0.17.7"
},
"scripts": {
"deploy:prod": "DEV=0 NODE_ENV=production npm run build && surge build --domain rloop.org",
"deploy:dev": "npm run build && surge build --domain https://rloop-beta.surge.sh",
"build": "shjs compile.js",
"_livereload": "livereload build",
"_nodemon": "nodemon -q -e html,css,js,json -i build -i node_modules -x \"npm run build\"",
"_httpserver": "http-server -r -c-1 build",
"dev": "concurrently \"npm run _httpserver\" \"npm run _nodemon\" \"npm run _livereload\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rloopteam/website-v2.git"
},
"author": "Ari Porad <ari@ariporad.com> (http://github.com/ariporad)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rloopteam/website-v2/issues"
},
"homepage": "https://github.com/rloopteam/website-v2#readme",
"engines": {
"node": ">=4.0.0"
}
}