-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
30 lines (30 loc) · 1.06 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
{
"name": "peercoin-address-generator",
"description": "Peercoin Address (Wallet) Generator",
"private": true,
"author": "Claudio Holanda",
"version": "1.2.5",
"repository": "https://github.com/peercoin/peercoin-address-generator.git",
"scripts": {
"start": "brunch watch --server -n",
"build": "brunch build",
"deploy": "npm run build && rm -rf ~/_temp_build_ppc && cp -R public ~/_temp_build_ppc && git stash && git checkout gh-pages && cp -a ~/_temp_build_ppc/. . && cp index.html 404.html && git add . && git commit -m 'Deploying.' && git push && rm -rf ~/_temp_build_ppc/ && git checkout master"
},
"dependencies": {
"qrious": "^4.0.2",
"roadtrip": "^0.5.1"
},
"devDependencies": {
"auto-reload-brunch": "^2",
"autoprefixer": "^7.0.1",
"babel-brunch": "^6.1.1",
"babel-preset-latest": "^6.24.1",
"brunch": "^2.9.0",
"clean-css-brunch": "^3.0.0",
"closure-compiler-brunch": "^0.1.6",
"cssnano-brunch": "^1.2.1",
"postcss-brunch": "^3.0.0",
"sass-brunch": "^3.0.1",
"sveltejs-brunch": "0.0.5"
}
}